Skip to content

Commit

Permalink
Tweak timeout for starting GH Action to ten minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGable committed Mar 22, 2022
1 parent 2969ed7 commit 797226f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/triggerWorkflowAndWait/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const {promiseWhile} = __nccwpck_require__(4502);

/**
* The maximum amount of time (in ms) we'll wait for a new workflow to start after sending the workflow_dispatch event.
* It's two minutes :)
* It's ten minutes :)
* @type {number}
*/
const NEW_WORKFLOW_TIMEOUT = 120000;
const NEW_WORKFLOW_TIMEOUT = 600000;

/**
* The maximum amount of time (in ms) we'll wait for a workflow to complete before giving up.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ const {promiseWhile} = require('../../libs/promiseWhile');

/**
* The maximum amount of time (in ms) we'll wait for a new workflow to start after sending the workflow_dispatch event.
* It's two minutes :)
* It's ten minutes :)
* @type {number}
*/
const NEW_WORKFLOW_TIMEOUT = 120000;
const NEW_WORKFLOW_TIMEOUT = 600000;

/**
* The maximum amount of time (in ms) we'll wait for a workflow to complete before giving up.
Expand Down

0 comments on commit 797226f

Please sign in to comment.