Last active
July 25, 2025 20:01
-
-
Save smortex/4cb937bb50f085a63cf08546d51f1d2d to your computer and use it in GitHub Desktop.
labels.rb
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
| wanted_labels = [ | |
| { name: 'backwards-incompatible', color: 'eb6420', description: 'This change will lead to a major version bump for the next release' }, | |
| { name: 'bug', color: '0e8a16', description: "Something isn't working" }, | |
| { name: 'documentation', color: '006b75', description: 'Improvements or additions to documentation' }, | |
| { name: 'duplicate', color: 'cccccc', description: 'This issue or pull request already exists' }, | |
| { name: 'enhancement', color: '0052cc', description: 'New feature or request' }, | |
| { name: 'good first issue', color: '7057ff', description: 'Good for newcomers' }, | |
| { name: 'help wanted', color: '159818', description: 'Extra attention is needed' }, | |
| { name: 'invalid', color: 'e4e669', description: "This doesn't seem right" }, | |
| { name: 'modulesync', color: 'fbca04', description: 'PR related to modulesync' }, | |
| { name: 'question', color: 'cc317c', description: 'Further information is requested' }, | |
| { name: 'security', color: 'b60205', description: 'Related to a security issue' }, | |
| { name: 'skip-changelog', color: '343e4c', description: 'Excluded from CHANGELOG' }, | |
| { name: 'wontfix', color: 'ffffff', description: 'This will not be worked on' }, | |
| ] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment