Skip to content

Commit 3c6e863

Browse files
hyperpolymathclaude
andcommitted
fix(ci): drop invalid job-level timeout-minutes from reusable-workflow calls
A timeout-minutes: key was set on one or more jobs that call 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. The standards *-reusable.yml workflows already declare timeout-minutes on their internal jobs, so the caller key was redundant as well as invalid. Files: .github/workflows/mirror.yml .github/workflows/rust-ci.yml .github/workflows/secret-scanner.yml Verified with actionlint (real tool): no "timeout-minutes is not available" findings remain. Part of the estate-wide CI cleanup (84 repos; reference hyperpolymath/gitbot-fleet#374). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 39e8f48 commit 3c6e863

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

.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,4 +12,3 @@ permissions:
1212
jobs:
1313
rust-ci:
1414
uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@412a7031577112b31ee287cc6060179d638d6500
15-
timeout-minutes: 10

.github/workflows/secret-scanner.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ permissions:
1212
jobs:
1313
scan:
1414
uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
15-
timeout-minutes: 10
1615
secrets: inherit
1716
trufflehog:
1817
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)