File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 2828 branches :
2929 - main
3030
31- # Support merge queues.
3231 merge_group :
3332 types :
3433 - checks_requested
3534
36- # Allow manual invocation.
3735 workflow_dispatch :
3836 inputs :
3937 base_sha :
5452 PIP_PROGRESS_BAR : ' off'
5553
5654concurrency :
57- # Cancel any previously-started but still active runs on the same branch.
5855 cancel-in-progress : true
5956 group : ${{github.workflow}}-${{github.event.pull_request.number||github.ref}}
6057
61- # Declare default workflow permissions as read only.
6258permissions : read-all
6359
6460jobs :
@@ -527,9 +523,12 @@ jobs:
527523 - name : Report failure
528524 if : contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
529525 run : |
530- echo ":x: One or more CI jobs failed."
526+ {
527+ echo ":x: CI checks failed"
528+ echo "One or more CI jobs failed. Please check the logs for details."
529+ } >> "$GITHUB_STEP_SUMMARY"
531530 exit 1
532531
533532 - name : Report success
534533 run : |
535- echo ' :white_check_mark: All CI jobs passed!'
534+ echo " :white_check_mark: All CI checks passed" >> "$GITHUB_STEP_SUMMARY"
You can’t perform that action at this time.
0 commit comments