From 98773b9fab500b79ebca52482b0358215650b66c Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sat, 9 Dec 2023 14:47:11 +0100 Subject: [PATCH] fix(renovate): update configuration --- renovate.json | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 1d172a5..1ddced2 100644 --- a/renovate.json +++ b/renovate.json @@ -5,6 +5,20 @@ "automergeType": "pr", "labels": [ "renovate" ], "packageRules": [ + { + "description": "Automatically update minor and patch versions of container images", + "addLabels": [ "renovate/container-images", "renovate/automerge" ], + "automerge": true, + "matchDatasources":[ "docker" ], + "matchUpdateTypes": [ "minor", "patch"] + }, + { + "description": "Prepare MR for major update of container images", + "addLabels": [ "renovate/container-images", "renovate/automerge" ], + "automerge": false, + "matchDatasources":[ "docker" ], + "matchUpdateTypes": [ "major"] + }, { "description": "Automatically update minor and patch versions of used drone-ci images", "addLabels": [ "renovate/droneci", "renovate/automerge" ], @@ -12,6 +26,13 @@ "matchManagers": "droneci", "matchUpdateTypes": [ "minor", "patch"] }, + { + "description": "Prepare MR for major update of used drone-ci images", + "addLabels": [ "renovate/droneci", "renovate/automerge" ], + "automerge": false, + "matchManagers": "droneci", + "matchUpdateTypes": [ "major"] + }, { "description": "Automatically update minor and patch versions of go modules", "addLabels": [ "renovate/gomod", "renovate/automerge" ], @@ -21,7 +42,7 @@ "matchUpdateTypes": [ "minor", "patch" ] }, { - "description": "Prepare MR for major update minor of go modules", + "description": "Prepare MR for major update of go modules", "addLabels": [ "renovate/gomod" ], "automerge": false, "matchBaseBranches": [ "master" ],