Skip to content

Instantly share code, notes, and snippets.

@swmcc
Last active May 16, 2023 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swmcc/d7eb1cad624db85e82c3896daf2153ca to your computer and use it in GitHub Desktop.
Save swmcc/d7eb1cad624db85e82c3896daf2153ca to your computer and use it in GitHub Desktop.
Creates a list of labels for a repo
gh label create "🐞 bug" --description "Something isn't working" --color d73a4a
gh label create "📚 documentation" --description "Improvements or additions to documentation" --color 0075ca
gh label create "\U0001f97d Testing" --description "Testing" --color bfdadc
gh label create "✨ enhancement" --description "New feature or request" --color a2eeef
gh label create "📦 project" --description "A project related issue" --color 0e8a16
gh label create "❓ question" --description "Further information is requested" --color d876e3
gh label create "👯\u200d♀️ duplicate" --description "This issue or pull request already exists" --color cfd3d7
gh label create "❌ wontfix" --description "This will not be worked on" --color ffffff
gh label create "🙏 help" --description "Extra attention is needed" --color 008672
gh label create "⛔️ invalid" --description "This doesn't seem right" --color e4e669
gh label create "🤗 good first issue" --description "Good for newcomers" --color 7057ff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment