Increase wait-for-stage timeouts to handle long queue times (#17536)

This commit is contained in:
Alison Shao
2026-01-21 16:10:52 -08:00
committed by GitHub
parent d6ea2c529c
commit e6ccb2949b

View File

@@ -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;