From 0d6030348b8215c17f123e65d7393995d6689a48 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 30 May 2023 07:48:58 +0300 Subject: [PATCH] Add renovate.json 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 --- renovate.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000000..2cb941297e95 --- /dev/null +++ b/renovate.json @@ -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" + ] + } + ] +}