Skip to content

Commit 935de70

Browse files
ci: group and rate-limit dependabot updates (#331)
Signed-off-by: krisztianfekete <git@krisztianfekete.org>
1 parent 0de7c50 commit 935de70

1 file changed

Lines changed: 25 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,32 @@ updates:
66
- package-ecosystem: "cargo"
77
directory: "/"
88
schedule:
9-
interval: "daily"
9+
interval: "weekly"
10+
day: "monday"
11+
groups:
12+
cargo-minor-patch:
13+
patterns:
14+
- "*"
15+
update-types:
16+
- "minor"
17+
- "patch"
18+
cargo-major:
19+
patterns:
20+
- "*"
21+
update-types:
22+
- "major"
23+
open-pull-requests-limit: 2
24+
cooldown:
25+
default-days: 7
26+
1027
- package-ecosystem: "github-actions"
1128
directory: "/"
1229
schedule:
1330
interval: "monthly"
31+
groups:
32+
github-actions:
33+
patterns:
34+
- "*"
35+
open-pull-requests-limit: 1
36+
cooldown:
37+
default-days: 7

0 commit comments

Comments
 (0)