From d3f96470892e0c80301d0b27b2b776b04e5899aa Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sun, 25 Jan 2026 14:17:57 -0600 Subject: [PATCH] ci: change renovate config to group custom manager rules --- renovate.json | 36 ++++++++++++++++++++++++++++-------- 1 file changed, 28 insertions(+), 8 deletions(-) diff --git a/renovate.json b/renovate.json index ae8021473..120fb6f0a 100644 --- a/renovate.json +++ b/renovate.json @@ -63,10 +63,7 @@ "automergeType": "branch" }, { - "description": "Label images", - "matchDatasources": [ - "docker" - ], + "description": "Label images, helm", "matchManagers": [ "custom.regex", "helm-values" ], @@ -78,14 +75,21 @@ "automerge": false }, { - "description": "Automerge image patches", + "description": "Label images, docker", + "matchDatasources": [ + "docker" + ], + "addLabels": [ + "image" + ], + "automerge": false + }, + { + "description": "Automerge image patches, helm", "matchUpdateTypes": [ "patch", "digest" ], - "matchDatasources": [ - "docker" - ], "matchManagers": [ "custom.regex", "helm-values" ], @@ -97,6 +101,22 @@ ], "automerge": true, "minimumReleaseAge": "1 days" + }, + { + "description": "Automerge image patches, docker", + "matchUpdateTypes": [ + "patch", + "digest" + ], + "matchDatasources": [ + "docker" + ], + "addLabels": [ + "image", + "automerge" + ], + "automerge": true, + "minimumReleaseAge": "1 days" } ] }