Skip to content

Commit

Permalink
fix ci concurrency group
Browse files Browse the repository at this point in the history
  • Loading branch information
ate47 committed Jan 11, 2024
1 parent c73291e commit 74388b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
type: boolean

concurrency:
group: ${{ github.ref }}
group: ${{ github.ref }}-build
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Pull request Tests
on: [pull_request]

concurrency:
group: ${{ github.ref }}
group: ${{ github.ref }}-pr
cancel-in-progress: true

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

concurrency:
group: ${{ github.ref }}
group: ${{ github.ref }}-sync
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Tests
on: [push]

concurrency:
group: ${{ github.ref }}
group: ${{ github.ref }}-push
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit 74388b7

Please sign in to comment.