From 6acc6734401eb4d94083cedf40b3b66a580ef229 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Tue, 8 Nov 2022 09:40:13 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Add=20labeller=20on=20close?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/label-closed.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/label-closed.yml diff --git a/.github/workflows/label-closed.yml b/.github/workflows/label-closed.yml new file mode 100644 index 00000000..aa08e4fc --- /dev/null +++ b/.github/workflows/label-closed.yml @@ -0,0 +1,19 @@ +name: Labeller on close + +on: + issues: + types: + - closed + pull_request: + types: + - closed + +jobs: + run: + name: "Label" + runs-on: ubuntu-latest + steps: + - name: Update Labels + uses: RebeccaStevens/issue-closed-labeler-action@latest + with: + rules: '[{"condition": "wip", "remove": "wip"}]'