Skip to content

Commit 271d215

Browse files
committed
add concurency
1 parent 64b41bc commit 271d215

File tree

3 files changed

+7
-21
lines changed

3 files changed

+7
-21
lines changed

.github/workflows/build-dev-artifacts.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ on:
44
pull_request:
55
types: [opened, synchronize, ready_for_review]
66

7-
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
9+
cancel-in-progress: true
810
jobs:
911
dev-zip:
1012
name: Build ZIP and upload to s3

.github/workflows/cancel-old-runs.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/test-e2e.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Test e2e
33
on:
44
push:
55
branches-ignore: master
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
9+
cancel-in-progress: true
610
jobs:
711
e2e:
812
name: E2E for ${{ matrix.env }}

0 commit comments

Comments
 (0)