Skip to content

Commit 54820ca

Browse files
committed
mroe debugging
1 parent e6b8d82 commit 54820ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-common.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,8 @@ jobs:
343343
return response.data.jobs;
344344
},
345345
);
346-
return workflow_jobs_nested.flat().find((job) => job.name === job_name).html_url;
346+
console.log(workflow_jobs_nested);
347+
return workflow_jobs_nested.flat().find((job) => job && job.name === job_name).html_url;
347348
348349
- name: Flaky test report
349350
if: ${{ !cancelled() }}

0 commit comments

Comments
 (0)