We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b8d82 commit 54820caCopy full SHA for 54820ca
.github/workflows/build-common.yml
@@ -343,7 +343,8 @@ jobs:
343
return response.data.jobs;
344
},
345
);
346
- return workflow_jobs_nested.flat().find((job) => job.name === job_name).html_url;
+ console.log(workflow_jobs_nested);
347
+ return workflow_jobs_nested.flat().find((job) => job && job.name === job_name).html_url;
348
349
- name: Flaky test report
350
if: ${{ !cancelled() }}
0 commit comments