Skip to content

Commit fed1efa

Browse files
authored
Enhance Dependabot configuration for Rust and Actions
Added cooldown and grouping settings for Rust and GitHub Actions dependencies.
1 parent abfac77 commit fed1efa

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,30 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "daily"
8+
cooldown:
9+
default-days: 3
10+
semver-major-days: 7
11+
semver-minor-days: 4
12+
semver-patch-days: 3
13+
groups:
14+
rust-dependencies:
15+
patterns:
16+
- "*"
17+
update-types:
18+
- "major"
19+
- "minor"
20+
- "patch"
821

922
# Maintain GitHub Actions
1023
- package-ecosystem: "github-actions"
1124
directory: "/"
1225
schedule:
1326
interval: "daily"
27+
groups:
28+
actions:
29+
patterns:
30+
- "*"
31+
update-types:
32+
- "major"
33+
- "minor"
34+
- "patch"

0 commit comments

Comments
 (0)