From 064e91fb2dd047d1709eb0bd7dbf8fc4a0ef3ed3 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 5 Sep 2022 11:53:08 +0100 Subject: [PATCH] Added `pull_request` event type to label actions workflow triggers refs https://github.com/TryGhost/Toolbox/issues/381 - we want to start collecting events from pull requests so we can label and reply upon certain events - this adds the `closed` and `labeled` events to the workflow triggers --- .github/workflows/label-actions.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/label-actions.yml b/.github/workflows/label-actions.yml index cc5c485c70..731c492a02 100644 --- a/.github/workflows/label-actions.yml +++ b/.github/workflows/label-actions.yml @@ -4,6 +4,8 @@ on: workflow_dispatch: issues: types: [opened, closed, labeled] + pull_request: + types: [closed, labeled] schedule: - cron: '0 * * * *'