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
This commit is contained in:
Daniel Lockyer 2022-09-05 11:53:08 +01:00
parent 167f2d577a
commit 064e91fb2d
No known key found for this signature in database
GPG Key ID: D21186F0B47295AD

View File

@ -4,6 +4,8 @@ on:
workflow_dispatch:
issues:
types: [opened, closed, labeled]
pull_request:
types: [closed, labeled]
schedule:
- cron: '0 * * * *'