Skip to content

Commit 88a307d

Browse files
fix(ci): drop invalid timeout-minutes from reusable-workflow calls (parse-dead) (#48)
## 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 e278e1a commit 88a307d

5 files changed

Lines changed: 0 additions & 5 deletions

File tree

.github/workflows/governance.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ permissions:
2828
jobs:
2929
governance:
3030
uses: hyperpolymath/standards/.github/workflows/governance-reusable.yml@d7c22711e830e1f383846472f6e9b99debdb201e
31-
timeout-minutes: 10

.github/workflows/hypatia-scan.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ permissions:
2222
jobs:
2323
hypatia:
2424
uses: hyperpolymath/standards/.github/workflows/hypatia-scan-reusable.yml@d7c22711e830e1f383846472f6e9b99debdb201e
25-
timeout-minutes: 10
2625
secrets: inherit

.github/workflows/mirror.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ permissions:
99
jobs:
1010
mirror:
1111
uses: hyperpolymath/standards/.github/workflows/mirror-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
12-
timeout-minutes: 10
1312
secrets: inherit

.github/workflows/rust-ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ permissions:
1212
jobs:
1313
rust-ci:
1414
uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@412a7031577112b31ee287cc6060179d638d6500
15-
timeout-minutes: 10
1615
with:
1716
enable_audit: true
1817
enable_coverage: true

.github/workflows/secret-scanner.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
pull-requests: write
1717
actions: read
1818
uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
19-
timeout-minutes: 10
2019
secrets: inherit
2120
trufflehog:
2221
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)