Skip to content

Commit

Permalink
chore: add labels workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
neriumrevolta committed Jul 24, 2023
1 parent 8f387bc commit b6b8635
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Add Labels

on:
issues:
types: [opened]

jobs:
add-labels:
runs-on: ubuntu-latest
steps:
- name: Add Awaiting Triage Label
uses: actions-cool/issues-helper@v3
with:
actions: 'add-labels'
token: ${{ secrets.LABELS_TOKEN }}
issue-number: ${{ github.event.issue.number }}
labels: 'awaiting-triage'

0 comments on commit b6b8635

Please sign in to comment.