Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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