diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml new file mode 100644 index 0000000..d7747cb --- /dev/null +++ b/.github/workflows/labels.yml @@ -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'