Skip to content

Commit 79efb5b

Browse files
committed
Increase limit of open Dependabot PRs
This should help avoiding the upper bound deps Maven Enforcer rule, which requires Dependabot PRs to be merged in an exact order (first a common transitive dependency, then the main dependency). By increasing the limit we should have less dead locks that occur when Dependabot opens a PR for a direct dependency, but can not open a PR for the transitive dependency.
1 parent 6a9b461 commit 79efb5b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/dependabot.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ registries:
2525
updates:
2626
- package-ecosystem: maven
2727
directory: "/"
28+
open-pull-requests-limit: 10
2829
schedule:
2930
interval: "daily"
3031
target-branch: "2.x"
@@ -101,6 +102,7 @@ updates:
101102

102103
- package-ecosystem: maven
103104
directory: "/"
105+
open-pull-requests-limit: 10
104106
schedule:
105107
interval: "daily"
106108
target-branch: "main"

0 commit comments

Comments
 (0)