Skip to content

Commit

Permalink
MINOR: Increase the open-pull-requests-limit for dependabot (#41499)
Browse files Browse the repository at this point in the history
### Rationale for this change

By default, dependabot opens a maximum of five pull requests for version updates. Once there are five open pull requests from dependabot, dependabot will not open any new requests until some of those open requests are merged or closed. With this change, dependabot can open up to 50 pull requests for Maven, and 10 pull requests for other systems.

### What changes are included in this PR?

Update configuration for dependabot.

### Are these changes tested?

Tested on other ASF projects 😄 

### Are there any user-facing changes?

No

Authored-by: JB Onofré <[email protected]>
Signed-off-by: David Li <[email protected]>
  • Loading branch information
jbonofre authored May 3, 2024
1 parent 0d8b379 commit 2eb47ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,35 @@ updates:
interval: "weekly"
commit-message:
prefix: "MINOR: [CI] "
open-pull-requests-limit: 10
- package-ecosystem: "gomod"
directory: "/go/"
schedule:
interval: "weekly"
commit-message:
prefix: "MINOR: [Go] "
open-pull-requests-limit: 10
- package-ecosystem: "maven"
directory: "/java/"
schedule:
interval: "weekly"
commit-message:
prefix: "MINOR: [Java] "
open-pull-requests-limit: 10
- package-ecosystem: "npm"
directory: "/js/"
schedule:
interval: "monthly"
commit-message:
prefix: "MINOR: [JS] "
open-pull-requests-limit: 10
- package-ecosystem: "nuget"
directory: "/csharp/"
schedule:
interval: "weekly"
commit-message:
prefix: "MINOR: [C#] "
open-pull-requests-limit: 10
ignore:
- dependency-name: "Microsoft.Extensions.*"
update-types:
Expand Down

0 comments on commit 2eb47ef

Please sign in to comment.