Skip to content

Commit 58c39fc

Browse files
authored
Merge pull request #6 from rubyatscale/jms/triage
add shared config for tagging new issues as "triage"
2 parents 9cef627 + 4819b45 commit 58c39fc

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)