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
28 changes: 28 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Labels

# Apply the canonical magicsunday label set to this repository. The manifest
# lives in magicsunday/.github; the sync is non-destructive, so labels specific
# to this repository are preserved.
on:
push:
branches: [main]
paths: ['.github/workflows/labels.yml']
schedule:
- cron: '15 4 * * 1'
workflow_dispatch:

permissions:
contents: read

# Serialise runs so an overlapping schedule/dispatch/push cannot drive two
# concurrent label mutations; do not cancel an in-flight sync mid-write.
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false

jobs:
sync:
uses: magicsunday/.github/.github/workflows/label-sync.yml@main
permissions:
contents: read
issues: write