File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2424
2525concurrency :
2626 # Skip intermediate builds: always.
27- # Cancel intermediate builds: always.
27+ # Cancel intermediate builds: only pull request builds
2828 group : ${{ github.workflow }}-${{ github.ref }}
29- cancel-in-progress : true
29+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
30+ env :
3031
3132jobs :
3233 AutoMerge :
Original file line number Diff line number Diff line change @@ -17,9 +17,10 @@ permissions:
1717
1818concurrency :
1919 # Skip intermediate builds: always.
20- # Cancel intermediate builds: always.
20+ # Cancel intermediate builds: only pull request builds
2121 group : ${{ github.workflow }}-${{ github.ref }}
22- cancel-in-progress : true
22+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
23+ env :
2324
2425jobs :
2526 check :
You can’t perform that action at this time.
0 commit comments