Skip to content

Commit afb49b2

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/governance.yml .github/workflows/hypatia-scan.yml .github/workflows/mirror.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 7b5897e commit afb49b2

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
@@ -17,4 +17,3 @@ permissions:
1717
jobs:
1818
governance:
1919
uses: hyperpolymath/standards/.github/workflows/governance-reusable.yml@09e7023d24682621bea4e11965a1ef5e87d86c3b
20-
timeout-minutes: 10

.github/workflows/hypatia-scan.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ permissions:
2020
jobs:
2121
scan:
2222
uses: hyperpolymath/standards/.github/workflows/hypatia-scan-reusable.yml@09e7023d24682621bea4e11965a1ef5e87d86c3b
23-
timeout-minutes: 20

.github/workflows/mirror.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ permissions:
1212
jobs:
1313
mirror:
1414
uses: hyperpolymath/standards/.github/workflows/mirror-reusable.yml@09e7023d24682621bea4e11965a1ef5e87d86c3b
15-
timeout-minutes: 10
1615
secrets: inherit

.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@09e7023d24682621bea4e11965a1ef5e87d86c3b
19-
timeout-minutes: 10
2019
secrets: inherit
2120
trufflehog:
2221
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)