Skip to content

Commit

Permalink
Create triagelabel.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jollylili authored Jun 18, 2024
1 parent 6044e4e commit 81e6f86
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/triagelabel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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 "triage"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}

0 comments on commit 81e6f86

Please sign in to comment.