Changeset 57000 for branches/6.4/.github/workflows/test-coverage.yml
- Timestamp:
- 10/24/2023 02:12:06 PM (2 years ago)
- File:
-
- 1 edited
-
branches/6.4/.github/workflows/test-coverage.yml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/6.4/.github/workflows/test-coverage.yml
r56954 r57000 184 184 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 185 185 with: 186 calling_status: ${{ contains( needs.*.result, 'cancelled' ) && 'cancelled' || contains( needs.*.result, 'failure' ) && 'failure' || 'success' }}186 calling_status: ${{ needs.test-coverage-report.result == 'success' && 'success' || needs.test-coverage-report.result == 'cancelled' && 'cancelled' || 'failure' }} 187 187 secrets: 188 188 SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }} … … 203 203 github.run_attempt < 2 && 204 204 ( 205 contains( needs.*.result, 'cancelled' ) || 206 contains( needs.*.result, 'failure' ) 205 needs.test-coverage-report.result == 'cancelled' || needs.test-coverage-report.result == 'failure' 207 206 ) 208 207
Note: See TracChangeset
for help on using the changeset viewer.