Skip to content

Commit a50598c

Browse files
fix(ci): drop invalid timeout-minutes from reusable-workflow calls (parse-dead) (#287)
## What One or more jobs set a job-level `timeout-minutes:` on a job that calls a reusable workflow via `uses:`. GitHub does not permit that key on a `workflow_call` job, so it **rejected the file at parse time** — the workflow failed instantly (`0s`) on every push and never ran a single job. ## Fix Remove the invalid caller-side `timeout-minutes:`. The standards `*-reusable.yml` workflows already declare `timeout-minutes` on every internal job, so the caller key was redundant as well as invalid. ## Verification `actionlint` (real tool): no `timeout-minutes is not available` findings remain. ## Context Estate-wide shared-fate CI defect across 84 repos. Reference fix: hyperpolymath/gitbot-fleet#374. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 620eff1 commit a50598c

4 files changed

Lines changed: 0 additions & 4 deletions

File tree

.github/workflows/governance.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ permissions:
3232
jobs:
3333
governance:
3434
uses: hyperpolymath/standards/.github/workflows/governance-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
35-
timeout-minutes: 10

.github/workflows/mirror.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ permissions:
2323
jobs:
2424
mirror:
2525
uses: hyperpolymath/standards/.github/workflows/mirror-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
26-
timeout-minutes: 10
2726
secrets: inherit

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ jobs:
157157
name: SLSA Provenance
158158
needs: [build]
159159
runs-on: ubuntu-latest
160-
timeout-minutes: 15
161160
permissions:
162161
actions: read
163162
id-token: write

.github/workflows/secret-scanner.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ jobs:
2020
pull-requests: write
2121
actions: read
2222
uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
23-
timeout-minutes: 10
2423
secrets: inherit

0 commit comments

Comments
 (0)