Update tests-completed job in CI to appear as success when one of the… (#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 <marc.boudreau@hashicorp.com>
This commit is contained in:
parent
1b8dd129ab
commit
312b6d3c82
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue