Skip to content

Commit

Permalink
Update tests-completed job in CI to appear as success when one of the… (
Browse files Browse the repository at this point in the history
#19806)

* Update tests-completed job in CI to appear as success when one of the required checks is skipped (but not cancelled)

* Fix typo in tests-completed

---------

Co-authored-by: Marc Boudreau <[email protected]>
  • Loading branch information
kubawi and Marc Boudreau authored Mar 30, 2023
1 parent dac0868 commit 9b379ae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,10 @@ jobs:
- setup
- test-go
- test-ui
if: |
always() &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled')
runs-on: ${{ fromJSON(needs.setup.outputs.compute-tiny) }}
steps:
- run: echo "All Go test successfully passed"
- run: echo "All Go tests successfully passed"

0 comments on commit 9b379ae

Please sign in to comment.