Ghost/.github/workflows/label-actions.yml
Daniel Lockyer b1ee741ddb
Added issue closed event to triggers for label action
refs 2a19e6151c

- 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
2021-11-18 11:05:49 +01:00

14 lines
207 B
YAML

name: 'Label Issues'
on:
issues:
types: [opened, closed, labeled]
schedule:
- cron: '0 * * * *'
jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: tryghost/label-actions@main