3959c00e5e
refs https://github.com/TryGhost/DevOps/issues/67 - this now lives in the Actions repo to cut down on maintenance cost
22 lines
395 B
YAML
22 lines
395 B
YAML
name: 'Label Issues'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
issues:
|
|
types: [opened, closed, labeled]
|
|
pull_request_target:
|
|
types: [closed, labeled]
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
action:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository_owner == 'TryGhost'
|
|
steps:
|
|
- uses: tryghost/actions/actions/label-actions@main
|