Skip to content

Commit

Permalink
workflow: run only one workflow at a time
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Iwanicki <michal.iwanicki@3mdeb.com>
  • Loading branch information
m-iwanicki committed Feb 5, 2025
1 parent 4afd1e3 commit 5748aa6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- '!v*-rc*'

concurrency:
group: ${{ github.workflow }}
group: run-only-one-workflow

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'v*-rc*'

concurrency:
group: ${{ github.workflow }}
group: run-only-one-workflow

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "main"

concurrency:
group: ${{ github.workflow }}
group: run-only-one-workflow

jobs:
build-dts:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}
group: run-only-one-workflow

jobs:
build:
Expand Down

0 comments on commit 5748aa6

Please sign in to comment.