Skip to content

Commit 2d7e796

Browse files
committed
ci(weekly-update): add concurrency group to prevent overlapping runs
Use cancel-in-progress: false so a scheduled run doesn't abort a long-running one (weekly update takes 10+ minutes and creates a PR).
1 parent 594f32b commit 2d7e796

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/weekly-update.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
permissions:
1616
contents: read
1717

18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.ref }}
20+
cancel-in-progress: false
21+
1822
jobs:
1923
check-updates:
2024
name: Check for dependency updates

0 commit comments

Comments
 (0)