Skip to content

Commit 5ed8a3c

Browse files
committed
Remove workflow concurrency limits
1 parent d80babe commit 5ed8a3c

3 files changed

Lines changed: 0 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ on:
66
pull_request:
77
branches: [main]
88

9-
# Cancel in-progress runs for the same ref (e.g. new pushes to a PR).
10-
concurrency:
11-
group: ci-${{ github.ref }}
12-
cancel-in-progress: true
13-
149
jobs:
1510
check:
1611
name: Check & Test & Build

.github/workflows/release.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ on:
44
push:
55
branches: [main]
66

7-
concurrency:
8-
group: release-${{ github.ref }}
9-
cancel-in-progress: false
10-
117
jobs:
128
release:
139
name: Release

.github/workflows/storybook.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ on:
88
pull_request:
99
workflow_dispatch: # manual redeploy (e.g. to restore production)
1010

11-
# One deploy per ref; a newer push supersedes an in-flight one.
12-
concurrency:
13-
group: storybook-${{ github.ref }}
14-
cancel-in-progress: true
15-
1611
jobs:
1712
deploy:
1813
name: Build & deploy Storybook

0 commit comments

Comments
 (0)