File tree Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 1+ # This YAML is used to declaratively manage GitHub issue labels with @
2+
3+ - name : bug
4+ color : d73a4a
5+ description : Something isn't working
6+ - name : documentation
7+ color : 0075ca
8+ description : Improvements or additions to documentation
9+ - name : duplicate
10+ color : cfd3d7
11+ description : This issue or pull request already exists
12+ - name : enhancement
13+ color : a2eeef
14+ description : New feature or request
15+ - name : good first issue
16+ color : 7057ff
17+ description : Good for newcomers
18+ - name : help wanted
19+ color : ' 008672'
20+ description : Extra attention is needed
21+ - name : invalid
22+ color : e4e669
23+ description : This doesn't seem right
24+ - name : question
25+ color : d876e3
26+ description : Further information is requested
27+ - name : wontfix
28+ color : ffffff
29+ description : This will not be worked on
Original file line number Diff line number Diff line change 1111 paths :
1212 - ' .github/labels.yml'
1313 - ' .github/workflows/triageops-labels.yml'
14+ workflow_dispatch :
15+ inputs :
16+ dry-run :
17+ description : ' Run in dry-run mode'
18+ required : false
19+ default : true
20+ type : boolean
1421
1522jobs :
1623 labeler :
2633 with :
2734 github-token : ${{ secrets.GITHUB_TOKEN }}
2835 yaml-file : .github/labels.yml
29- dry-run : ${{ github.event_name == 'pull_request' }}
36+ dry-run : ${{ inputs.dry-run == 'true' || github.event_name == 'pull_request'}}
3037 exclude : |
3138 help*
3239 *issue
You can’t perform that action at this time.
0 commit comments