From 4701ea6971c19114ff1c3101414477860bf6ef80 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 16:09:45 +0100 Subject: [PATCH] chore: Configure Renovate (#2) * chore(deps): add renovate.json * chore: update renovate.json * chore: update renovate.json config * chore: reorder renovate.json config rules --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Caselli --- renovate.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..508f314b --- /dev/null +++ b/renovate.json @@ -0,0 +1,38 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>ashleycaselli/renovate-config" + ], + "packageRules": [ + { + "description": "Updates to the parent dependencies should trigger a new patch release", + "matchPaths": [ + "pom.xml" + ], + "semanticCommitType": "chore", + "semanticCommitScope": "core-deps" + }, + { + "description": "Updates to the dependencies under the build settings element should not trigger any release", + "matchPaths": [ + "pom.xml" + ], + "matchDepTypes": [ + "build" + ], + "semanticCommitType": "build", + "semanticCommitScope": "deps" + }, + { + "description": "Updates to the dependencies with scope 'test' should be tagged as test(deps)", + "matchPaths": [ + "pom.xml" + ], + "matchDepTypes": [ + "test" + ], + "semanticCommitType": "test", + "semanticCommitScope": "deps" + } + ] +}