From fc40ebbc90133c2f3adaccf0967444eae3b4ed5e Mon Sep 17 00:00:00 2001 From: Indradhanush Gupta Date: Thu, 20 Aug 2026 16:02:06 -0400 Subject: [PATCH] fix(ci): max 5 minute wait for artifacts to build 30 minutes is too long. A failed build wastes CI minutes. --- .github/workflows/e2e.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 9786643df..19cc9dd27 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -41,6 +41,7 @@ jobs: - name: Wait for controller manager image build if: ${{ github.event_name != 'workflow_dispatch' }} id: wait + timeout-minutes: 5 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: bash .ci/wait-for-job.sh build-controller-manager.yml build-controller-manager "${{ github.event.pull_request.head.sha || github.sha }}" @@ -56,6 +57,7 @@ jobs: - name: Wait for agent bundle build if: ${{ github.event_name != 'workflow_dispatch' }} id: wait-bundle + timeout-minutes: 5 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: bash .ci/wait-for-job.sh build-agent-bundle.yml build-agent-bundle "${{ github.event.pull_request.head.sha || github.sha }}"