Skip to content

Commit c69e9cd

Browse files
author
Piotr Kubicki
committed
fix(dependabot): specify Maven as package ecosystem in dependabot.yml
- Set `package-ecosystem` to `maven` to enable dependency updates for pom.xml - Ensure Dependabot checks for updates in the root directory `/` - Schedule weekly dependency updates - Limit open pull requests to 5 to prevent spam
1 parent 0a19f33 commit c69e9cd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: "maven" # Specify Maven as the package ecosystem
9+
directory: "/" # Root directory where pom.xml is located
1010
schedule:
11-
interval: "weekly"
11+
interval: "weekly" # Dependabot will check for updates every week
12+
open-pull-requests-limit: 5 # Optional: Limit the number of open PRs from Dependabot

0 commit comments

Comments
 (0)