bf9395e022
CI / results (push) Blocked by required conditions
CI / license-header (push) Has been skipped
CI / e2e-dry-run (push) Has been skipped
CI / e2e-live (push) Waiting to run
CI / fast-gate (push) Failing after 0s
Test PR Label Logic / test-pr-labels (push) Failing after 1s
Skill Format Check / check-format (push) Failing after 2s
CI / security (push) Failing after 5s
CI / unit-test (push) Has been skipped
CI / lint (push) Has been skipped
CI / script-test (push) Has been skipped
CI / deterministic-gate (push) Has been skipped
CI / coverage (push) Has been skipped
CI / deadcode (push) Waiting to run
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
name: Issue Labels
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 * * * *' # every hour
|
|
workflow_dispatch:
|
|
inputs:
|
|
dry_run:
|
|
description: "Do not write labels, only print planned changes"
|
|
required: false
|
|
default: true
|
|
type: boolean
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
concurrency:
|
|
group: issue-labels
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
sync-issue-labels:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
# v6+ uses Node 24 runtime for JavaScript actions.
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '24'
|
|
|
|
- name: Sync managed issue labels
|
|
id: sync_issue_labels
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
EVENT_NAME: ${{ github.event_name }}
|
|
INPUT_DRY_RUN: ${{ github.event.inputs.dry_run }}
|
|
run: |
|
|
args=(
|
|
"--max-issues" "300"
|
|
)
|
|
|
|
# Schedule runs should write labels by default.
|
|
# Manual runs default to dry-run unless explicitly disabled.
|
|
if [ "$EVENT_NAME" = "workflow_dispatch" ] && [ "${INPUT_DRY_RUN:-true}" = "true" ]; then
|
|
args+=("--dry-run" "--json")
|
|
fi
|
|
|
|
node scripts/issue-labels/index.js "${args[@]}"
|
|
|
|
- name: Warn when label sync fails
|
|
if: ${{ always() && steps.sync_issue_labels.outcome == 'failure' }}
|
|
run: |
|
|
echo "::warning::Issue label sync failed; labels may be stale."
|
|
echo "⚠️ Issue label sync failed; labels may be stale." >> "$GITHUB_STEP_SUMMARY"
|