Skip to content

Commit f5a36b6

Browse files
authored
Merge pull request #60 from dpouris/github-workflows
fix: add checkout step before adding triage label in issue auto-label…
2 parents 1969700 + cdb0866 commit f5a36b6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ jobs:
88
permissions:
99
issues: write # allow adding labels and comments on issues
1010
steps:
11-
- name: Add triage label
11+
- name: Checkout repo
12+
uses: actions/checkout@v2
13+
14+
- name: Add git triage label
1215
run: gh issue edit "$ISSUE_NUMBER" --add-label "triage"
1316
env:
1417
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)