Skip to content

Commit 94036c8

Browse files
committed
chore: add concurrency settings to workflow files for improved efficiency
1 parent 39885a9 commit 94036c8

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ permissions:
1616
issues: write
1717
pull-requests: write
1818

19+
concurrency:
20+
group: release
21+
cancel-in-progress: true
22+
1923
jobs:
2024
release:
2125
if: "!contains(github.event.head_commit.message, '[skip ci]')"

.github/workflows/sync-patches.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ permissions:
1414
contents: write
1515
pull-requests: write
1616

17+
concurrency:
18+
group: sync-patches
19+
cancel-in-progress: true
20+
1721
jobs:
1822
create-sync-pr:
1923
runs-on: ubuntu-latest

.github/workflows/trigger-docs-update.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
# - 'packages/super-editor/src/components/**/*.js'
1212
workflow_dispatch: # Manual trigger
1313

14+
concurrency:
15+
group: docs-update
16+
cancel-in-progress: true
17+
1418
jobs:
1519
trigger-docs:
1620
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)