Skip to content

Commit

Permalink
Add renovate.json
Browse files Browse the repository at this point in the history
Adding manually so I can tell it to use the main-test branch.

renovate.json: only check maven dependencies

renovate.json:

Only target minor and patch updates, except for 0.x versions because
those can make breaking changes even in minor and patch releases as
according to the SemVer spec.

See: https://docs.renovatebot.com/key-concepts/automerge/#automerge-non-major-updates
  • Loading branch information
alanorth committed Nov 27, 2023
1 parent 06cf8e1 commit 0d60303
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema" : "https://docs.renovatebot.com/renovate-schema.json",
"baseBranches" : [
"main-test"
],
"enabledManagers" : [
"maven"
],
"ignoreDeps": ["com.amazonaws:aws-java-sdk-s3"],
"extends" : [
"config:base"
],
"packageRules" : [
{
"matchCurrentVersion" : "!/^0/",
"matchUpdateTypes" : [
"minor",
"patch"
]
}
]
}

0 comments on commit 0d60303

Please sign in to comment.