We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe221e1 commit 719ca51Copy full SHA for 719ca51
1 file changed
.github/workflows/label-new-issue.yml
@@ -3,18 +3,20 @@ name: Label New Issues
3
on:
4
issues:
5
types: [opened]
6
-
+
7
jobs:
8
label-issues:
9
runs-on: ubuntu-latest
10
permissions:
11
issues: write
12
13
steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v6
16
- name: Add triage label
17
env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- ISSUE_NUMBER: ${{ github.event.issue.number }}
18
- LABEL: "triage"
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
+ ISSUE_NUMBER: ${{ github.event.issue.number }}
20
+ LABEL: "triage"
21
run: gh issue edit "$ISSUE_NUMBER" --add-label "$LABEL"
22
0 commit comments