Skip to content

Commit

Permalink
Create CI to tag issues with needs triage (#3605)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits authored Oct 2, 2024
1 parent 6ebf49a commit d4a0993
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/issue-needs-triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Label issues with needs-triage
on:
issues:
types:
- reopened
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue edit "$NUMBER" --add-label "$LABELS"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
LABELS: needs-triage

0 comments on commit d4a0993

Please sign in to comment.