We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9cef627 + 4819b45 commit 58c39fcCopy full SHA for 58c39fc
1 file changed
.github/workflows/triage.yml
@@ -0,0 +1,16 @@
1
+name: Label issues as "triage"
2
+
3
+on:
4
+ workflow_call:
5
+jobs:
6
+ label_issues:
7
+ runs-on: ubuntu-latest
8
+ permissions:
9
+ issues: write
10
+ steps:
11
+ - run: gh issue edit "$NUMBER" --add-label "$LABELS"
12
+ env:
13
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14
+ GH_REPO: ${{ github.repository }}
15
+ NUMBER: ${{ github.event.issue.number }}
16
+ LABELS: triage
0 commit comments