File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 6666 echo "is allowed branch: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/testing-oidc-trusted-publishing' }}"
6767 echo ""
6868 echo "=== Full condition would be ==="
69- echo "Result: ${{ always() && (needs.build.result == 'failure' || needs.check.result == 'failure' || needs.release.result == 'failure') && github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/testing-oidc-trusted-publishing') }}"
69+ echo "any job failed AND push event: ${{ (needs.build.result == 'failure' || needs.check.result == 'failure' || needs.release.result == 'failure') && github.event_name == 'push' }}"
70+ echo "all conditions: ${{ (needs.build.result == 'failure' || needs.check.result == 'failure' || needs.release.result == 'failure') && github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/testing-oidc-trusted-publishing') }}"
You can’t perform that action at this time.
0 commit comments