File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: adds label(s) to labelable
33inputs :
44 gh_token :
55 description : gh api access token to use
6- default : ${{ secrets.GITHUB_TOKEN }}
6+ required : true
77 repository :
88 description : the OWNER/REPOSITORY to operate on
99 default : ${{ github.repository }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: delete Label(s)
33inputs :
44 gh_token :
55 description : gh api access token to use
6- default : ${{ secrets.GITHUB_TOKEN }}
6+ required : true
77 repository :
88 description : the OWNER/REPOSITORY to operate on
99 default : ${{ github.repository }}
Original file line number Diff line number Diff line change 1- name : Manual workflow to apply labels in bulk
1+ name : Apply labels in bulk
22
33on :
44 workflow_dispatch :
3838 - name : Run Label Action
3939 uses : ./.github/actions/add-labels
4040 with :
41+ gh_token : ${{ secrets.GITHUB_TOKEN }}
4142 issues : ${{ inputs.issues }}
4243 labels : ${{ inputs.labels }}
4344 colors : ${{ inputs.colors }}
Original file line number Diff line number Diff line change 11
2- name : Manual workflow to delete labels in bulk
2+ name : Delete labels in bulk
33
44on :
55 workflow_dispatch :
2626 - name : Run Label Action
2727 uses : ./.github/actions/delete-labels
2828 with :
29+ gh_token : ${{ secrets.GITHUB_TOKEN }}
2930 labels : ${{ inputs.labels }}
You can’t perform that action at this time.
0 commit comments