From 797226ff65c602bdc085d6b30d00aa701fbf06ca Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Tue, 22 Mar 2022 13:24:52 -0600 Subject: [PATCH] Tweak timeout for starting GH Action to ten minutes --- .github/actions/triggerWorkflowAndWait/index.js | 4 ++-- .../actions/triggerWorkflowAndWait/triggerWorkflowAndWait.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/triggerWorkflowAndWait/index.js b/.github/actions/triggerWorkflowAndWait/index.js index 4a6166ed9f52..86a6f5039af5 100644 --- a/.github/actions/triggerWorkflowAndWait/index.js +++ b/.github/actions/triggerWorkflowAndWait/index.js @@ -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. diff --git a/.github/actions/triggerWorkflowAndWait/triggerWorkflowAndWait.js b/.github/actions/triggerWorkflowAndWait/triggerWorkflowAndWait.js index 2fb803e1fb30..8082b479985b 100644 --- a/.github/actions/triggerWorkflowAndWait/triggerWorkflowAndWait.js +++ b/.github/actions/triggerWorkflowAndWait/triggerWorkflowAndWait.js @@ -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.