Changeset 57002 for branches/6.4/.github/workflows/php-compatibility.yml
- Timestamp:
- 10/24/2023 02:22:08 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.4/.github/workflows/php-compatibility.yml
r57000 r57002 123 123 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 124 124 with: 125 calling_status: ${{ needs.php-compatibility.result == 'success' && 'success' || needs.php-compatibility.result == 'cancelled' && 'cancelled' || 'failure' }}125 calling_status: ${{ contains( needs.*.result, 'cancelled' ) && 'cancelled' || contains( needs.*.result, 'failure' ) && 'failure' || 'success' }} 126 126 secrets: 127 127 SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }} … … 142 142 github.run_attempt < 2 && 143 143 ( 144 needs.php-compatibility.result == 'cancelled' || needs.php-compatibility.result == 'failure' 144 contains( needs.*.result, 'cancelled' ) || 145 contains( needs.*.result, 'failure' ) 145 146 ) 146 147
Note: See TracChangeset
for help on using the changeset viewer.