Skip to content

Commit 8b4d3b7

Browse files
Apply suggestions from code review
Co-authored-by: Dilum Aluthge <dilum@aluthge.com>
1 parent c9ad976 commit 8b4d3b7

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/automerge.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ env:
2424

2525
concurrency:
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

3132
jobs:
3233
AutoMerge:

.github/workflows/registry-consistency-ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ permissions:
1717

1818
concurrency:
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

2425
jobs:
2526
check:

0 commit comments

Comments
 (0)