Skip to content

Commit 473eccc

Browse files
committed
Hopefully fix job extraction now
1 parent 2fa40dd commit 473eccc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/build-common.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -340,12 +340,10 @@ jobs:
340340
per_page: 100
341341
},
342342
(response) => {
343-
console.log(response);
344-
return response.data.jobs;
343+
return response.data;
345344
},
346345
);
347-
console.log(workflow_jobs_nested);
348-
return workflow_jobs_nested.flat().find((job) => job && job.name === job_name).html_url;
346+
return workflow_jobs_nested.flat().find((job) => job.name === job_name).html_url;
349347
350348
- name: Flaky test report
351349
if: ${{ !cancelled() }}

0 commit comments

Comments
 (0)