Changeset 57000 for branches/6.4/.github/workflows/phpunit-tests.yml
- Timestamp:
- 10/24/2023 02:12:06 PM (2 years ago)
- File:
-
- 1 edited
-
branches/6.4/.github/workflows/phpunit-tests.yml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/6.4/.github/workflows/phpunit-tests.yml
r56660 r57000 137 137 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 138 138 with: 139 calling_status: ${{ contains( needs.*.result, 'cancelled' ) && 'cancelled' || contains( needs.*.result, 'failure' ) && 'failure' || 'success' }}139 calling_status: ${{ needs.test-with-mysql.result == 'success' && needs.test-with-mariadb.result == 'success' && 'success' || ( needs.test-with-mysql.result == 'cancelled' || needs.test-with-mariadb.result == 'cancelled' ) && 'cancelled' || 'failure' }} 140 140 secrets: 141 141 SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }} … … 156 156 github.run_attempt < 2 && 157 157 ( 158 contains( needs.*.result, 'cancelled' )||159 contains( needs.*.result, 'failure' )158 needs.test-with-mysql.result == 'cancelled' || needs.test-with-mysql.result == 'failure' || 159 needs.test-with-mariadb.result == 'cancelled' || needs.test-with-mariadb.result == 'failure' 160 160 ) 161 161
Note: See TracChangeset
for help on using the changeset viewer.