From 400dec78d1258576de92ef23c495efb27ccaeefb Mon Sep 17 00:00:00 2001 From: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Date: Wed, 30 Nov 2022 01:12:24 -0800 Subject: [PATCH] Fix rerun flaky tests expecting a prefix that is not there (#71627) --- tools/pull_request_hooks/rerunFlakyTests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pull_request_hooks/rerunFlakyTests.js b/tools/pull_request_hooks/rerunFlakyTests.js index 8e85d63a5eb..2b5bfa5f072 100644 --- a/tools/pull_request_hooks/rerunFlakyTests.js +++ b/tools/pull_request_hooks/rerunFlakyTests.js @@ -4,7 +4,7 @@ const TITLE_BOT_HEADER = "title: "; // Only check jobs that start with these. // Helps make sure we don't restart something like screenshot tests or linters, which are not known to be flaky. const CONSIDERED_JOBS = [ - "CI Suite / Integration Tests", + "Integration Tests", ]; async function getFailedJobsForRun(github, context, workflowRunId, runAttempt) {