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