From c400ca14e79a9f602cfb05587224d426f062d0c5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 09:11:04 +0000 Subject: [PATCH] chore(config): migrate config renovate.json --- renovate.json | 76 +++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 56 insertions(+), 20 deletions(-) diff --git a/renovate.json b/renovate.json index 1f79db43..3bef8d2b 100644 --- a/renovate.json +++ b/renovate.json @@ -1,44 +1,80 @@ { - "extends": ["config:best-practices", ":semanticCommits", ":disableRateLimiting"], - "baseBranches": ["develop", "main"], + "extends": [ + "config:best-practices", + ":semanticCommits", + ":disableRateLimiting" + ], + "baseBranches": [ + "develop", + "main" + ], "packageRules": [ { "enabled": false, - "matchPackagePatterns": ["*"], - "matchBaseBranches": ["main"] + "matchBaseBranches": [ + "main" + ], + "matchPackageNames": [ + "*" + ] }, { - "matchPackagePatterns": ["*"], - "matchBaseBranches": ["develop"], - "labels": ["dependencies"], + "matchBaseBranches": [ + "develop" + ], + "labels": [ + "dependencies" + ], "bumpVersion": "patch", - "dependencyDashboardApproval": true + "dependencyDashboardApproval": true, + "matchPackageNames": [ + "*" + ] }, { "groupName": "spring", "groupSlug": "spring", - "matchPackagePatterns": ["org.springframework.*"], - "matchBaseBranches": ["develop"], + "matchBaseBranches": [ + "develop" + ], "bumpVersion": "minor", - "dependencyDashboardApproval": true + "dependencyDashboardApproval": true, + "matchPackageNames": [ + "/org.springframework.*/" + ] }, { "groupName": "all minor dependencies", "groupSlug": "all-minor-patch", - "matchPackagePatterns": ["*"], - "matchBaseBranches": ["develop"], - "matchUpdateTypes": ["minor", "patch"], + "matchBaseBranches": [ + "develop" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], "bumpVersion": "patch", - "dependencyDashboardApproval": false + "dependencyDashboardApproval": false, + "matchPackageNames": [ + "*" + ] } ], "vulnerabilityAlerts": { "enabled": true, - "baseBranches": ["main"], - "addLabels": ["security"], + "baseBranches": [ + "main" + ], + "addLabels": [ + "security" + ], "bumpVersion": "patch", - "schedule": ["before 5:00am"] + "schedule": [ + "before 5:00am" + ] }, - "schedule": ["every weekend"], + "schedule": [ + "every weekend" + ], "timezone": "Europe/Paris" -} \ No newline at end of file +}