Skip to content

Commit 7f53ef6

Browse files
committed
Add Dependabot
1 parent 038fa15 commit 7f53ef6

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/dependabot.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
version: 2
2+
updates:
3+
# Enable version updates for Cargo
4+
- package-ecosystem: "cargo"
5+
# Look for `Cargo.toml` and `Cargo.lock` files in the `root` directory
6+
directory: "/"
7+
# Check for updates once a week
8+
schedule:
9+
interval: "weekly"
10+
# Specify labels for pull requests
11+
labels:
12+
- "dependencies"
13+
- "rust"
14+
# Allow up to 10 open pull requests
15+
open-pull-requests-limit: 10
16+
# Create pull requests for patch and minor updates
17+
versioning-strategy: auto
18+
# Create a group of dependencies to be updated together
19+
groups:
20+
dependencies:
21+
patterns:
22+
- "*"
23+
24+
# Enable version updates for GitHub Actions
25+
- package-ecosystem: "github-actions"
26+
directory: "/"
27+
schedule:
28+
interval: "weekly"
29+
labels:
30+
- "dependencies"
31+
- "github-actions"
32+
# Allow up to 5 open pull requests for GitHub Actions
33+
open-pull-requests-limit: 5

0 commit comments

Comments
 (0)