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;