b1ee741ddb
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
14 lines
207 B
YAML
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
|