diff --git a/.github/workflows/wait_for_required_workflows.yml b/.github/workflows/wait_for_required_workflows.yml index 6fac1430efbe7a..3766eb67580056 100644 --- a/.github/workflows/wait_for_required_workflows.yml +++ b/.github/workflows/wait_for_required_workflows.yml @@ -78,7 +78,7 @@ jobs: status: 'completed', per_page: 100 }) - const runs = checkRuns.map(({ name, conclusion }) => ({ name, conclusion })) + const runs = checkRuns.map(({ id, name, conclusion }) => ({ id, name, conclusion })) console.log(`Got the following check runs: ${JSON.stringify(runs)}`) const matchingRuns = runs.filter(({ name }) => actions.includes(name)) const failedRuns = matchingRuns.filter(({ conclusion }) => conclusion !== 'success')