264678e9be
fixes https://github.com/TryGhost/Toolbox/issues/285 - without this, some of the workflows that are only useful for the core team will run on forks - this commit adds checks to ensure we're running on a repo maintained by the TryGhost organization for a handful of workflows
15 lines
253 B
YAML
15 lines
253 B
YAML
name: 'Label Issues'
|
|
|
|
on:
|
|
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
|