From 2a54ff3b9fa79b964eadf7fbca5afbf35887fed5 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 13 Mar 2023 09:19:41 +0100 Subject: [PATCH] chore: enable auto-merge for crd updates --- renovate.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index bf73d46..d971b48 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,19 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>thegeeklab/renovate-presets"] + "extends": ["github>thegeeklab/renovate-presets"], + "packageRules": [ + { + "description": "Automerge CRDs", + "groupName": "crds catalog", + "matchDatasources": ["regex"], + "matchPackageNames": [ + "projectcalico/calico", + "fluxcd/flux2", + "cert-manager/cert-manager", + "cloudnative-pg/cloudnative-pg" + ], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + } + ] }