The conf format takes no comment lines: every non-blank, non-panel line must parse as name|color|description, so the file is data only. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
18 lines
811 B
YAML
18 lines
811 B
YAML
name: labels
|
|
# The automation LABELS.md promises, now implemented upstream
|
|
# (heavy-duty/ceremony#13): scope labeling and the state reconciler live in
|
|
# the reusable workflow this caller pins. Rig keeps the triggers and
|
|
# permissions (a called workflow cannot define them), its path map in
|
|
# .github/labeler.yml, and its panel + scope taxonomy in .github/labels.conf.
|
|
on:
|
|
schedule: [{cron: "*/15 * * * *"}] # advisory; the handoff label is the real wake
|
|
workflow_dispatch: # bootstraps missing labels on a fresh repo
|
|
pull_request_target:
|
|
types: [opened, reopened, ready_for_review, converted_to_draft, synchronize, labeled, unlabeled]
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
pull-requests: write
|
|
jobs:
|
|
labels:
|
|
uses: heavy-duty/ceremony/.github/workflows/labels.yml@0.1.0
|