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.
2 parents 4329d1c + b152986 commit 0fd6fd6Copy full SHA for 0fd6fd6
homu/server.py
@@ -622,6 +622,10 @@ def fail(err):
622
return 'OK'
623
if info['check_run']['conclusion'] is None:
624
625
+ # GHA marks jobs as skipped, if they are not run due to the job
626
+ # condition. This prevents bors from failing because of these jobs.
627
+ if info['check_run']['conclusion'] == 'skipped':
628
+ return 'OK'
629
630
report_build_res(
631
info['check_run']['conclusion'] == 'success',
0 commit comments