Skip to content

Commit

Permalink
feat(workflows): add concurrency group to CI and CD workflows [norele…
Browse files Browse the repository at this point in the history
…ase]
  • Loading branch information
0x1026 committed Dec 10, 2024
1 parent 586d362 commit caa6eff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
push:
branches: ["main"]

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

jobs:
foundation:
name: 🌱 Foundation setup
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
push:
branches: ["**", "!main"]

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

jobs:
foundation:
name: 🌱 Foundation setup
Expand Down

0 comments on commit caa6eff

Please sign in to comment.