From b1ee741ddb58c2bb477429165a64b3ff2eefb3c0 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Thu, 18 Nov 2021 11:05:49 +0100 Subject: [PATCH] Added issue `closed` event to triggers for label action refs https://github.com/TryGhost/label-actions/commit/2a19e6151c6c98547aa43244e36df4da6c71232b - we want to ensure that the `needs triage` label is removed when an issue is closed - the event was handled in the labelling Action but it needs the event adding here to trigger execution --- .github/workflows/label-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/label-actions.yml b/.github/workflows/label-actions.yml index 957b6d019f..d4a28ec638 100644 --- a/.github/workflows/label-actions.yml +++ b/.github/workflows/label-actions.yml @@ -2,7 +2,7 @@ name: 'Label Issues' on: issues: - types: [opened, labeled] + types: [opened, closed, labeled] schedule: - cron: '0 * * * *'