Use ' not " for quotes, and add more brackets.

This commit is contained in:
Michael Kaye 2022-05-09 15:30:02 +01:00
parent b73bb3783c
commit 80263bb790

View file

@ -318,7 +318,7 @@ jobs:
- integration-tests
- ui-tests
- codecov-units
if: always() && needs.should-i-run.status == "success" && (needs.codecov-units.status != "success" || needs.ui-tests.status != "success" || needs.integration-tests.status != "success")
if: always() && (needs.should-i-run.status == 'success' ) && ((needs.codecov-units.status != 'success' ) || (needs.ui-tests.status != 'success') || (needs.integration-tests.status != 'success'))
# No concurrency required, runs every time on a schedule.
steps:
- uses: michaelkaye/matrix-hookshot-action@v1.0.0