Skip to content

Commit

Permalink
Merge branch 'main' into fix-configSchema
Browse files Browse the repository at this point in the history
  • Loading branch information
kadel authored Oct 17, 2024
2 parents 086eb40 + 5cf60df commit 5a1e2f9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pr-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ env:
TURBO_SCM_BASE: ${{ github.event.pull_request.base.sha }}
TURBO_SCM_HEAD: ${{ github.sha }}

# enforce only one action can run at a time for a given PR, and
# when updating a PR, actions in progress will be cancelled to start a fresh one
concurrency:
group: push
cancel-in-progress: false
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pr-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ env:
TURBO_SCM_BASE: ${{ github.event.pull_request.base.sha }}
TURBO_SCM_HEAD: ${{ github.sha }}

# enforce only one action can run at a time for a given PR, and
# when updating a PR, actions in progress will be cancelled to start a fresh one
concurrency:
group: push
cancel-in-progress: false
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ on:
- 1.2.x
- release-[0-9].[0-9]*

# enforce only one release action at a time
concurrency:
group: push
group: ${{ github.workflow }}
cancel-in-progress: false

jobs:
Expand Down

0 comments on commit 5a1e2f9

Please sign in to comment.