From 4117586b91c394793417d2da4790e6e95fd0aa0b Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Tue, 5 Oct 2021 18:32:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Apply=20done=20label=20to=20issu?= =?UTF-8?q?es=20on=20PR=20close?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/apply-done-label.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/apply-done-label.yml diff --git a/.github/workflows/apply-done-label.yml b/.github/workflows/apply-done-label.yml new file mode 100644 index 00000000..923104c4 --- /dev/null +++ b/.github/workflows/apply-done-label.yml @@ -0,0 +1,13 @@ +# When a PR is merged, any associated issues will have a Done label applied +# The label will depend on the issue type, see: ./github/close-label.yml +name: 💡 Apply Done Label +on: + pull_request: + types: [opened, merged, closed] +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: logerfo/close-label@0.0.4 + with: + repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}