From b411b92d1c186eb2b6086ec3d235d51e9eb3d5c3 Mon Sep 17 00:00:00 2001 From: Joey Orlando Date: Thu, 13 Jun 2024 13:39:39 -0400 Subject: [PATCH] add on issue closed github actions workflow --- .github/workflows/on-issue-closed.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/on-issue-closed.yml diff --git a/.github/workflows/on-issue-closed.yml b/.github/workflows/on-issue-closed.yml new file mode 100644 index 00000000..8763b93c --- /dev/null +++ b/.github/workflows/on-issue-closed.yml @@ -0,0 +1,17 @@ +name: On issue closed + +on: + issues: + types: + - closed + +jobs: + remove-needs-triage-label: + name: Remove "needs triage" label + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Remove "needs triage" label + uses: actions-ecosystem/action-remove-labels@v1.3.0 + with: + labels: needs triage