Ghost/.github/workflows/label-actions.yml
Daniel Lockyer e77fedf9b2
Allowed label actions workflow to be run manually
- we might want to manually trigger the workflow outside of the
  schedule/event-driven flow
2022-08-17 09:26:56 +02:00

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