Skip to content

Commit

Permalink
changed poll from 10 to 30 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
ldraney committed Jan 12, 2024
1 parent 724a877 commit bad86a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/trigger-regression.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const triggerAndWait = async ({ github, context, core }) => {
let conclusion;
let workflow_url = `https://github.com/${owner}/${repo}/actions/runs/${run_id}`;
do {
await new Promise(r => setTimeout(r, 10000)); // Poll every 10 seconds
await new Promise(r => setTimeout(r, 30000)); // Poll every 30 seconds
const result = await github.rest.actions.getWorkflowRun({
owner,
repo,
Expand Down

0 comments on commit bad86a1

Please sign in to comment.