We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18d27cd + 0937fda commit 2500222Copy full SHA for 2500222
.github/workflows/.github/dependabot.yml
@@ -1,11 +1,14 @@
1
-# .github/dependabot.yml
2
version: 2
3
updates:
4
- - package-ecosystem: "gomod"
5
- directory: "/"
+ - package-ecosystem: "gomod" # For Go modules
+ directory: "/" # Location of go.mod
6
schedule:
7
- interval: "weekly" # or "daily", "monthly"
8
- open-pull-requests-limit: 5
9
- # Allow manually triggering via GitHub UI (enabled by default)
+ interval: "monthly" # Check weekly (adjust to daily/monthly as needed)
+ open-pull-requests-limit: 10 # Max concurrent PRs
+ commit-message:
+ prefix: "deps" # Prefix for commit messages
10
+ include: "scope" # Include scope in commit message
11
+ labels:
12
+ - "dependencies" # Label for PRs
13
allow:
14
- dependency-type: "all"
0 commit comments