From 33cfd21a76a75b4a32a2aff6298b43be709fd03f Mon Sep 17 00:00:00 2001 From: Karolina Rakoczy Date: Wed, 9 Nov 2022 16:26:49 +0100 Subject: [PATCH] Fix add comment to release PR with tests status (#2548) --- .github/workflows/approveAndMergeReleasePR.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/approveAndMergeReleasePR.js b/.github/workflows/approveAndMergeReleasePR.js index 32a25a3ea..9c283c7ea 100644 --- a/.github/workflows/approveAndMergeReleasePR.js +++ b/.github/workflows/approveAndMergeReleasePR.js @@ -164,7 +164,7 @@ async function waitForTestsToFinish(requestVariables) { .then(response => { if (response.runByBuildNumber.status === "RUNNING") { setTimeout(async function() { - resolve(await waitForTestsToFinish(client, requestVariables)); + resolve(await waitForTestsToFinish(requestVariables)); }, 10000); } else { resolve(response.runByBuildNumber);