From 96d5b2ab672a9fbded379cff96cb9aeb73fe8700 Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Mon, 30 Sep 2024 09:55:02 +0100 Subject: [PATCH] chore: add "Needs attention" label to new issues --- .github/workflows/issue-labels.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/issue-labels.yml b/.github/workflows/issue-labels.yml index 8c85858c..6c82268f 100644 --- a/.github/workflows/issue-labels.yml +++ b/.github/workflows/issue-labels.yml @@ -30,5 +30,14 @@ jobs: uses: actions-ecosystem/action-remove-labels@v1 with: labels: 'blocked: customer-response' + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + label-new-issue: + runs-on: ubuntu-latest + steps: + - name: Add 'Needs Attention' label to new issue + uses: actions-ecosystem/action-add-labels@v1 + with: + labels: 'Needs Attention' env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} \ No newline at end of file