Skip to content

Commit d8e9d18

Browse files
committed
chore: add concurrency to actions to avoid duplicate actions running after new commit
1 parent 5144f7b commit d8e9d18

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

.github/workflows/build-docs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Build docs
33
on:
44
push:
55

6+
concurrency: ${{ github.workflow }}-${{ github.ref }}
7+
68
jobs:
79
build:
810
runs-on: ubuntu-latest

.github/workflows/build-packages.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ name: Build Packages
44
on:
55
push:
66

7+
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
79
jobs:
810
build:
911
name: Build Packages

.github/workflows/dev-packages.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ name: Create Dev Release
44

55
on: workflow_dispatch
66

7+
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
79
jobs:
810
publish:
911
name: Publish Dev Packages

.github/workflows/test-isolated.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ name: Test Isolated Demos
44
on:
55
push:
66

7+
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
79
jobs:
810
test:
911
name: Test Isolated Demos

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ name: Test Packages
44
on:
55
push:
66

7+
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
79
jobs:
810
test:
911
name: Test Packages

0 commit comments

Comments
 (0)