From cdd57c11b09ed5d13ff94d8d4c1570e6e41e7f25 Mon Sep 17 00:00:00 2001 From: DABH Date: Thu, 10 Sep 2026 11:49:48 -0500 Subject: [PATCH] Cap CI jobs at 30 minutes Without an explicit limit a hung job burns GitHub's 6-hour default timeout before failing; recent jobs finish in ~6 minutes, so 30 minutes is generous headroom while failing hangs fast. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 488daa0f..80712010 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ permissions: jobs: build-and-test: runs-on: ubuntu-latest + timeout-minutes: 30 steps: - name: Print build information run: "echo head_ref: ${{ github.head_ref }}, ref: ${{ github.ref }}"