We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52e2cfc commit b9fa9ddCopy full SHA for b9fa9dd
.github/workflows/label_issues.yaml
@@ -0,0 +1,18 @@
1
+name: Label issues
2
+on:
3
+ issues:
4
+ types:
5
+ - reopened
6
+ - opened
7
+jobs:
8
+ label_issues:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ issues: write
12
+ steps:
13
+ - run: gh issue edit "$NUMBER" --add-label "$LABELS"
14
+ env:
15
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16
+ GH_REPO: ${{ github.repository }}
17
+ NUMBER: ${{ github.event.issue.number }}
18
+ LABELS: triage
0 commit comments