From 8adc22cfcf30136618b31884be0f781209949432 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Tue, 17 Sep 2024 20:41:51 -0400 Subject: [PATCH] Consider CI Completion Gate flaky and bump allowed maximum --- .github/workflows/scripts/rerunFlakyTests.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/rerunFlakyTests.js b/.github/workflows/scripts/rerunFlakyTests.js index ae4cd73d90..b570c8c78b 100644 --- a/.github/workflows/scripts/rerunFlakyTests.js +++ b/.github/workflows/scripts/rerunFlakyTests.js @@ -10,7 +10,8 @@ const CONSIDERED_STEP_PREFIXES = [ const CONSIDERED_JOBS = [ "Windows Live Tests", "Linux Live Tests", - "Build .deb Package" + "Build .deb Package", + "CI Completion Gate" ]; async function getFailedJobsForRun(github, context, workflowRunId, runAttempt) { @@ -38,7 +39,7 @@ export async function rerunFlakyTests({ github, context }) { context.payload.workflow_run.run_attempt ); - if (failingJobs.length > 3) { + if (failingJobs.length > 4) { console.log("Many jobs failing. PROBABLY not flaky, Will not re-run."); return; }