1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: 2
# Batch dependency updates into a single grouped PR per ecosystem instead of one
# PR per dependency. Without `groups:`, every bump opens its own PR — each firing
# the full lint/test/coverage matrix and demanding a separate review, which
# multiplies CI minutes and review load every week.
#
# Minor and patch bumps (the low-risk majority) are grouped into one PR per
# ecosystem so they can be reviewed and merged together. Major bumps are left
# ungrouped — they're the most likely to break and deserve an individual PR with
# focused review.
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
cargo:
update-types:
- "minor"
- "patch"
- package-ecosystem: "cargo"
directory: "/ui"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
cargo-ui:
update-types:
- "minor"
- "patch"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
npm:
update-types:
- "minor"
- "patch"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
github-actions:
update-types:
- "minor"
- "patch"