Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# permissions: { contents: read, pull-requests: write, issues: write }
# jobs:
# label:
# uses: QAtlasHub/.github/.github/workflows/labeler.yml@v1
# uses: QAtlasHub/.github/.github/workflows/labeler.yml@main
# with: { runner: '["self-hosted","rosina"]' }
#
# THE LABELS ARE SET THROUGH THE API, NEVER THROUGH `gh pr edit`. That command reads the
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/tagbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,19 @@
# schedule: [{ cron: "17 4 * * *" }] # daily self-backfill — no JuliaTagBot app needed
# issue_comment: { types: [created] } # JuliaTagBot app trigger, if ever installed
# workflow_dispatch: # manual catch-up
# jobs: { tagbot: { uses: QAtlasHub/.github/.github/workflows/tagbot.yml@v1, secrets: inherit } }
# jobs: { tagbot: { uses: QAtlasHub/.github/.github/workflows/tagbot.yml@main, secrets: inherit } }
name: TagBot (reusable)
on:
workflow_call:
secrets:
# BOT_PAT was USED (`token:` below) and never declared. An undeclared secret in a called
# workflow is EMPTY unless the caller says `secrets: inherit` — the example above does, which is
# the only reason this ever worked and the reason nothing reported it. actionlint has been
# flagging it on every `push:main` run since at least 2026-07-26; pull requests passed because
# reviewdog only reports inside the diff, so a defect in an untouched file is invisible by
# construction on a PR. Same class as lab-sotashimozono/.github#17.
BOT_PAT:
required: false
DOCUMENTER_KEY:
required: false
permissions:
Expand Down