Last active
September 4, 2025 17:24
-
-
Save d-oit/c280da85decdb0037d29f776f54b710f to your computer and use it in GitHub Desktop.
Create Github Labels with GitHub CLI (gh)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gh label create "npm" --description "NPM ecosystem updates" --color cb3837 | |
| gh label create "github-actions" --description "GitHub Actions workflow updates" --color 2088ff | |
| gh label create "security" --description "Security-related updates" --color b60205 | |
| gh label create "priority-high" --description "High-priority issues" --color e11d48 | |
| gh label create "dependencies" --description "For tracking dependency updates" --color 0366d6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Requires: GitHub CLI (gh) and authenticated access.