Skip to content

Commit 719ca51

Browse files
committed
Fix workflow
1 parent fe221e1 commit 719ca51

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/label-new-issue.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@ name: Label New Issues
33
on:
44
issues:
55
types: [opened]
6-
6+
77
jobs:
88
label-issues:
99
runs-on: ubuntu-latest
1010
permissions:
1111
issues: write
1212

1313
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v6
1416
- name: Add triage label
1517
env:
16-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17-
ISSUE_NUMBER: ${{ github.event.issue.number }}
18-
LABEL: "triage"
18+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
ISSUE_NUMBER: ${{ github.event.issue.number }}
20+
LABEL: "triage"
1921
run: gh issue edit "$ISSUE_NUMBER" --add-label "$LABEL"
20-
22+

0 commit comments

Comments
 (0)