From b972ab789487c1895dbfe4acab8ddfbb1651be44 Mon Sep 17 00:00:00 2001 From: Amir Hardon Date: Tue, 18 Mar 2025 14:13:50 -0700 Subject: [PATCH] Add a GitHub Action to manage status: `awaiting user response` A new comment on an issue with this label would get the label automatically removed. --- .github/workflows/user-input.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/user-input.yml diff --git a/.github/workflows/user-input.yml b/.github/workflows/user-input.yml new file mode 100644 index 000000000..632611296 --- /dev/null +++ b/.github/workflows/user-input.yml @@ -0,0 +1,14 @@ +name: Manage awaiting user response + +on: + issue_comment: + types: [created] + +jobs: + remove_label: + runs-on: ubuntu-latest + if: "contains(github.event.issue.labels.*.name, 'status: awaiting user response')" + steps: + - uses: actions-ecosystem/action-remove-labels@v1 + with: + labels: "status: awaiting user response"