From e658babb3c82c4c4543ef2599a511910df8978ce Mon Sep 17 00:00:00 2001 From: Heather Simon <84740964+hsimon-hashicorp@users.noreply.github.com> Date: Wed, 19 Oct 2022 12:46:38 -0700 Subject: [PATCH] Create remove-labels.yml (#17611) --- .github/workflows/remove-labels.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/remove-labels.yml diff --git a/.github/workflows/remove-labels.yml b/.github/workflows/remove-labels.yml new file mode 100644 index 000000000..7531e9fda --- /dev/null +++ b/.github/workflows/remove-labels.yml @@ -0,0 +1,19 @@ +name: Autoremove Labels + +on: + issues: + types: [closed] + pull_request_target: + types: [closed] + +jobs: + + RemoveWaitingLabelFromClosedIssueOrPR: + if: github.event.action == 'closed' + runs-on: ubuntu-latest + steps: + - name: Remove triaging labels from closed issues and PRs + uses: actions-ecosystem/action-remove-labels@v1 + with: + labels: | + waiting-for-response \ No newline at end of file