From bb3d5b50494f2d276c5cae1a9777e7f1e7252067 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Fri, 17 Jul 2026 21:33:53 +0100 Subject: [PATCH] fix(ci): drop invalid job-level timeout-minutes from reusable-workflow calls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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/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 --- .github/workflows/governance.yml | 1 - .github/workflows/mirror.yml | 1 - .github/workflows/secret-scanner.yml | 1 - 3 files changed, 3 deletions(-) diff --git a/.github/workflows/governance.yml b/.github/workflows/governance.yml index 99d39de..0835d38 100644 --- a/.github/workflows/governance.yml +++ b/.github/workflows/governance.yml @@ -28,4 +28,3 @@ permissions: jobs: governance: uses: hyperpolymath/standards/.github/workflows/governance-reusable.yml@d7c22711e830e1f383846472f6e9b99debdb201e - timeout-minutes: 10 \ No newline at end of file diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index f4ddfca..6bd847d 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -9,5 +9,4 @@ permissions: jobs: mirror: uses: hyperpolymath/standards/.github/workflows/mirror-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236 - timeout-minutes: 10 secrets: inherit diff --git a/.github/workflows/secret-scanner.yml b/.github/workflows/secret-scanner.yml index bb2670d..77a453f 100644 --- a/.github/workflows/secret-scanner.yml +++ b/.github/workflows/secret-scanner.yml @@ -17,7 +17,6 @@ jobs: pull-requests: write actions: read uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236 - timeout-minutes: 10 secrets: inherit trufflehog: runs-on: ubuntu-latest