Skip to content

Commit

Permalink
#416: Configure dependabot to run monthly and to group version update…
Browse files Browse the repository at this point in the history
…s in a single PR.

Only major updates will be in a separate PR. Since that will probably
contain API breaking changes, that may break our build.
  • Loading branch information
mvanaken committed Mar 15, 2024
1 parent d202d9e commit 76c5e1c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ updates:
- package-ecosystem: maven
directory: "/"
schedule:
interval: daily
interval: monthly
groups:
# This will group updates of minor or patch version in a single PR, while major updates will be in separate PR.
minor-updates:
update-types:
- "minor"
- "patch"
open-pull-requests-limit: 10
ignore:
- dependency-name: com.google.errorprone:error_prone_core
versions:
- "> 2.3.4, < 3"
- dependency-name: com.google.errorprone:error_prone_core
versions:
- "> 2.3.4, < 3"

0 comments on commit 76c5e1c

Please sign in to comment.