Skip to content

Commit

Permalink
feat: automatically label all issues with ipcei (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skarlso authored Sep 13, 2024
1 parent 077e920 commit c3bfd40
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto-label.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Label issues
on:
issues:
types:
- 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: area/ipcei

0 comments on commit c3bfd40

Please sign in to comment.