Skip to content

Commit

Permalink
Add workflow to automatically give 'triage' label to new and reopened…
Browse files Browse the repository at this point in the history
… issues
  • Loading branch information
shaunagm committed Oct 31, 2024
1 parent 2afac45 commit 0f73f3e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ADD_LABELS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Label issues
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: triage

0 comments on commit 0f73f3e

Please sign in to comment.