Skip to content

Commit 4819b45

Browse files
committed
add shared config for tagging new issues as "triage"
1 parent 43eb85b commit 4819b45

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/triage.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)