From a91915f104edb52c75b1054d905d56af614c53fa Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 21 Apr 2024 18:43:36 -0400 Subject: [PATCH] Fix flaky tests rerun again --- .github/workflows/scripts/rerunFlakyTests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/rerunFlakyTests.js b/.github/workflows/scripts/rerunFlakyTests.js index 955cc2aa09..5bacef1278 100644 --- a/.github/workflows/scripts/rerunFlakyTests.js +++ b/.github/workflows/scripts/rerunFlakyTests.js @@ -16,7 +16,7 @@ async function getFailedJobsForRun(github, context, workflowRunId, runAttempt) { attempt_number: runAttempt }, response => { - return response.data.jobs; + return response.data; }); return jobs