Skip to content

Commit 3c0635c

Browse files
Optimize CI during crowdin sync (#7114)
* fix(ci): cancel existing runs during noisy crowdin syncs * be more precise in the grouping
1 parent f116efe commit 3c0635c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/dependency-review.yml

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
branches:
1414
- main
1515

16+
# Cancel any runs on the same branch
17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.ref }}
19+
cancel-in-progress: true
20+
1621
permissions:
1722
contents: read
1823

.github/workflows/translations-pr.yml

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ on:
1515
- 'packages/i18n/locales/*.json'
1616
- '!packages/i18n/locales/en.json'
1717

18+
# Cancel any runs on the same branch
19+
concurrency:
20+
group: ${{ github.workflow }}-${{ github.ref }}
21+
cancel-in-progress: true
22+
1823
permissions:
1924
actions: read
2025

0 commit comments

Comments
 (0)