Skip to content

Commit bb228e0

Browse files
committed
chore(ci): add concurrency control
1 parent 3ff93c9 commit bb228e0

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/ci-auth-js-node18.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
- '!packages/core/auth-js/*ignore'
1616
workflow_call:
1717

18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.ref }}
20+
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
21+
1822
permissions:
1923
actions: read
2024
contents: read

.github/workflows/ci-core.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ on:
1919
- '!packages/**/*ignore'
2020
workflow_call:
2121

22+
concurrency:
23+
group: ${{ github.workflow }}-${{ github.ref }}
24+
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
25+
2226
permissions:
2327
actions: read
2428
contents: read

.github/workflows/ci-supabase-js.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
- '!packages/**/*ignore'
1616
workflow_call:
1717

18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.ref }}
20+
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
21+
1822
env:
1923
NODE_VERSION: '20'
2024

0 commit comments

Comments
 (0)