Changeset 56660 for trunk/.github/workflows/performance.yml
- Timestamp:
- 09/22/2023 02:28:01 PM (2 years ago)
- File:
-
- 1 edited
-
trunk/.github/workflows/performance.yml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/performance.yml
r56537 r56660 252 252 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 253 253 with: 254 calling_status: ${{ needs.performance.result == 'success' && 'success' || needs.performance.result == 'cancelled' && 'cancelled' || 'failure' }}254 calling_status: ${{ contains( needs.*.result, 'cancelled' ) && 'cancelled' || contains( needs.*.result, 'failure' ) && 'failure' || 'success' }} 255 255 secrets: 256 256 SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }} … … 271 271 github.run_attempt < 2 && 272 272 ( 273 needs.performance.result == 'cancelled' || needs.performance.result == 'failure' 273 contains( needs.*.result, 'cancelled' ) || 274 contains( needs.*.result, 'failure' ) 274 275 ) 275 276
Note: See TracChangeset
for help on using the changeset viewer.