From e6ccb2949b443111d20dba31ae5d97d850101cf3 Mon Sep 17 00:00:00 2001 From: Alison Shao <54658187+alisonshao@users.noreply.github.com> Date: Wed, 21 Jan 2026 16:10:52 -0800 Subject: [PATCH] Increase wait-for-stage timeouts to handle long queue times (#17536) --- .github/workflows/pr-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 9a19ae2e6..953e2e9d3 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -209,7 +209,7 @@ jobs: uses: actions/github-script@v7 with: script: | - const maxWaitMinutes = 60; + const maxWaitMinutes = 240; const pollIntervalSeconds = 120; // 2 minutes to reduce GH API calls const maxAttempts = (maxWaitMinutes * 60) / pollIntervalSeconds; @@ -270,7 +270,7 @@ jobs: uses: actions/github-script@v7 with: script: | - const maxWaitMinutes = 90; + const maxWaitMinutes = 480; const pollIntervalSeconds = 120; // 2 minutes to reduce GH API calls const maxAttempts = (maxWaitMinutes * 60) / pollIntervalSeconds;