mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
bf4ae212fd
refs https://github.com/TryGhost/Toolbox/issues/81 - the existing `label-actions` tooling was deprecated and shut down but after reviewing, it wasn't expressive enough for our workflow use cases - we wanted a tool we could drop into our repos and it works without extra configuration - I've developed the `tryghost/label-actions` GitHub Action which will supports all our labeling flows for triaging - this commit switches the repo over to using that - configured the scheduled tasks to run at midnight daily
13 lines
199 B
YAML
13 lines
199 B
YAML
name: 'Label Issues'
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, labeled]
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
|
|
jobs:
|
|
action:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: tryghost/label-actions@main
|