From b56d55ae1528673f4b149d10cea354681fdca239 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 3 Dec 2025 22:39:12 +0000 Subject: [PATCH] Migrate Renovate config (#2224) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. 🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid. ❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://github.com/renovatebot/renovate/discussions). --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/2224 Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- renovate.json | 67 +++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 51 insertions(+), 16 deletions(-) diff --git a/renovate.json b/renovate.json index 77441484c..1a9222ad0 100644 --- a/renovate.json +++ b/renovate.json @@ -12,48 +12,80 @@ "packageRules": [ { "description": "Label charts", - "matchDatasources": ["helm"], - "addLabels": ["chart"], + "matchDatasources": [ + "helm" + ], + "addLabels": [ + "chart" + ], "automerge": false, "minimumReleaseAge": "1 days" }, { "description": "Automerge chart patches", - "matchUpdateTypes": ["patch"], - "matchDatasources": ["helm"], - "addLabels": ["chart", "automerge"], + "matchUpdateTypes": [ + "patch" + ], + "matchDatasources": [ + "helm" + ], + "addLabels": [ + "chart", + "automerge" + ], "automerge": true, "minimumReleaseAge": "1 days" }, { "description": "Automerge helm chart lock files", - "matchManagers": ["helm"], + "matchManagers": [ + "helm" + ], "lockFileMaintenance": { "enabled": true }, - "addLabels": ["chart", "automerge"], + "addLabels": [ + "chart", + "automerge" + ], "automerge": true, - "automergeType": "branch-merge" + "automergeType": "branch" }, { "description": "Label images", - "matchDatasources": ["docker"], - "addLabels": ["image"], + "matchDatasources": [ + "docker" + ], + "addLabels": [ + "image" + ], "automerge": false, "minimumReleaseAge": "1 days" }, { "description": "Automerge image patches", - "matchUpdateTypes": ["patch", "digest"], - "matchDatasources": ["docker"], - "addLabels": ["image", "automerge"], + "matchUpdateTypes": [ + "patch", + "digest" + ], + "matchDatasources": [ + "docker" + ], + "addLabels": [ + "image", + "automerge" + ], "automerge": true, "minimumReleaseAge": "1 days" }, { "description": "Automerge image updates for certain applications", - "matchUpdateTypes": ["minor"], - "matchDatasources": ["docker"], + "matchUpdateTypes": [ + "minor" + ], + "matchDatasources": [ + "docker" + ], "matchPackageNames": [ "clidey/whodb", "eigenfocus/eigenfocus", @@ -71,7 +103,10 @@ "ghcr.io/prometheus-community/charts/kube-prometheus-stack", "vectorim/element-web" ], - "addLabels": ["image", "automerge"], + "addLabels": [ + "image", + "automerge" + ], "automerge": true, "minimumReleaseAge": "2 days" }