Skip to content

Commit 197ca80

Browse files
authored
Add concurrency group to e2e test workflows to cancel redundant runs (#32)
1 parent 1096b28 commit 197ca80

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/test-e2e-bundle.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
push:
55
pull_request:
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
jobs:
812
test-bundle-e2e:
913
name: Bundle E2E Tests

.github/workflows/test-e2e.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
push:
55
pull_request:
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
jobs:
812
test-e2e:
913
name: E2E Tests

0 commit comments

Comments
 (0)