Merge pull request #7392 from vector-im/feature/bma/fix_post_pr

Fix message sent even if the step `ui-tests` is successful.
This commit is contained in:
Benoit Marty 2022-10-18 10:28:40 +02:00 committed by GitHub
commit e8dbdbb15f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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