Skip to content

Commit

Permalink
chore: add concurrency to actions to avoid duplicate actions running …
Browse files Browse the repository at this point in the history
…after new commit
  • Loading branch information
DominicGBauer committed Dec 24, 2024
1 parent 5144f7b commit d8e9d18
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Build docs
on:
push:

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ name: Build Packages
on:
push:

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
build:
name: Build Packages
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/dev-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ name: Create Dev Release

on: workflow_dispatch

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
publish:
name: Publish Dev Packages
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-isolated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ name: Test Isolated Demos
on:
push:

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
test:
name: Test Isolated Demos
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ name: Test Packages
on:
push:

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
test:
name: Test Packages
Expand Down

0 comments on commit d8e9d18

Please sign in to comment.