e77fedf9b2
- we might want to manually trigger the workflow outside of the schedule/event-driven flow
16 lines
274 B
YAML
16 lines
274 B
YAML
name: 'Label Issues'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
issues:
|
|
types: [opened, closed, labeled]
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
|
|
jobs:
|
|
action:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository_owner == 'TryGhost'
|
|
steps:
|
|
- uses: tryghost/label-actions@main
|