File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2424
2525env :
2626 # are we on a release branch?
27- DO_REALEASE : ${{ github.ref_name == github.event.repository.default_branch || github.ref_name == 'next' || startsWith(github.ref_name, 'maint/')}}
27+ DO_REALEASE : ${{ github.ref_name == github.event.repository.default_branch || github.ref_name == 'next' || startsWith(github.ref_name, 'maint/') }}
2828 DRY_RUN : true
2929
3030permissions :
3131 contents : read
3232
3333concurrency :
3434 group : ${{ github.workflow }}-${{ github.event.number || github.ref }}
35- cancel-in-progress : ${{ env.DO_REALEASE != 'true' }}
35+ cancel-in-progress : ${{ github.event_name == 'pull_request' || (github.ref_name != github.event.repository.default_branch && github.ref_name != 'next' && !startsWith(github.ref_name, 'maint/')) }}
3636
3737jobs :
3838 test :
You can’t perform that action at this time.
0 commit comments