Skip to content

Commit 8c76d59

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/release.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 b6a8056 commit 8c76d59

4 files changed

Lines changed: 0 additions & 4 deletions

File tree

.github/workflows/mirror.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ permissions:
1111

1212
jobs:
1313
mirror:
14-
timeout-minutes: 15
1514
uses: hyperpolymath/standards/.github/workflows/mirror-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
1615
secrets: inherit

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ jobs:
154154
provenance:
155155
name: SLSA Provenance
156156
needs: [build]
157-
timeout-minutes: 20
158157
permissions:
159158
actions: read
160159
id-token: write

.github/workflows/rust-ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ permissions:
2020

2121
jobs:
2222
rust-ci:
23-
timeout-minutes: 30
2423
uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@412a7031577112b31ee287cc6060179d638d6500

.github/workflows/secret-scanner.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ permissions:
1515

1616
jobs:
1717
scan:
18-
timeout-minutes: 15
1918
permissions:
2019
contents: read
2120
pull-requests: write

0 commit comments

Comments
 (0)