Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/cron-update-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Utility that updates labels based on keystone reusable workflow repository
name: "Monthly Label Timer"
on:
# Manually run the job
workflow_dispatch:
# Periodically run the job
# Every first day of the month at 1:29 UTC
schedule:
- cron: "29 1 1 * *"

# Prevent Concurrent Jobs
concurrency:
group: labels-monthly-${{ github.ref }}
cancel-in-progress: true

# Grant only what’s needed; label management requires issues: write
permissions:
contents: read
issues: write

jobs:
# Runs reusable workflow (utility-update-labels.yml on the main branch) from keystone repository
create-labels:
name: "Update Labels"
uses: escendit/keystone/.github/workflows/utility-update-labels.yml@main
secrets: inherit
Loading