Skip to content

Commit 0abde8c

Browse files
Add Maven support to Dependabot configuration
Added Maven package ecosystem to Dependabot configuration.
1 parent ccc0f48 commit 0abde8c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "pip"
4-
directory: "/"
3+
- package-ecosystem: "maven"
4+
directory: "/" # pom.xml is at repository root
55
schedule:
6-
interval: "weekly"
6+
interval: "weekly" # change to "daily" or "monthly" if you prefer
7+
open-pull-requests-limit: 5
8+
labels:
9+
- "dependencies"
710
- package-ecosystem: "github-actions"
8-
directory: "/"
11+
directory: "/" # workflows in .github/workflows
912
schedule:
1013
interval: "weekly"
14+
open-pull-requests-limit: 5
15+
labels:
16+
- "github-actions"

0 commit comments

Comments
 (0)