Skip to content

Commit 2500222

Browse files
authored
Merge pull request #10 from wcatz/deps
fix(dependabot): not being very dependable
2 parents 18d27cd + 0937fda commit 2500222

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed
Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# .github/dependabot.yml
21
version: 2
32
updates:
4-
- package-ecosystem: "gomod"
5-
directory: "/"
3+
- package-ecosystem: "gomod" # For Go modules
4+
directory: "/" # Location of go.mod
65
schedule:
7-
interval: "weekly" # or "daily", "monthly"
8-
open-pull-requests-limit: 5
9-
# Allow manually triggering via GitHub UI (enabled by default)
6+
interval: "monthly" # Check weekly (adjust to daily/monthly as needed)
7+
open-pull-requests-limit: 10 # Max concurrent PRs
8+
commit-message:
9+
prefix: "deps" # Prefix for commit messages
10+
include: "scope" # Include scope in commit message
11+
labels:
12+
- "dependencies" # Label for PRs
1013
allow:
1114
- dependency-type: "all"

0 commit comments

Comments
 (0)