Skip to content

Commit 06507c3

Browse files
authored
CI: group dependency updates #3801
Problem: Dependency updates can be noisy. Unmerged dependency updates can block other updates if the max is reached. Solution: - Use dependabot "groups" feature: https://github.blog/2023-08-24-a-faster-way-to-manage-version-updates-with-dependabot/ - Group updates to github actions. - Group updates to AWS SDK. - Group updates to vscode lsp packages.
1 parent ba478c6 commit 06507c3

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,21 @@ updates:
88
target-branch: 'master' # Avoid updates to "staging".
99
schedule:
1010
interval: 'daily'
11-
# Check for updates to GitHub Actions every week
11+
groups:
12+
aws-sdk:
13+
dependency-type: 'production'
14+
patterns:
15+
- '@aws-sdk/*'
16+
vscode-lsp:
17+
dependency-type: 'production'
18+
patterns:
19+
- 'vscode-lang*'
1220
- package-ecosystem: 'github-actions'
1321
directory: '/'
22+
target-branch: 'master' # Avoid updates to "staging".
1423
schedule:
15-
interval: 'weekly'
24+
interval: 'daily'
25+
groups:
26+
github-actions:
27+
patterns:
28+
- '*'

0 commit comments

Comments
 (0)