From b6b86353ab8593cd2d3c09b74d87d35048d60e2d Mon Sep 17 00:00:00 2001 From: Petko Date: Mon, 24 Jul 2023 15:18:34 +0300 Subject: [PATCH] chore: add labels workflow --- .github/workflows/labels.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/labels.yml 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'