From 6ddb251139dfceaf56262bfef2b4cc7edd23d0f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan-Luis=20de=20Sousa-Valadas=20Casta=C3=B1o?= Date: Thu, 22 May 2025 12:59:27 +0200 Subject: [PATCH] Fix renovate etcd matcher MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Because we disable the gomod matchManager the etcd packages were only enabled with custom.regex. We need to enable it explicitly in the packageRule. Co-authored-by: Tom Wieczorek Signed-off-by: Juan-Luis de Sousa-Valadas CastaƱo --- renovate.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/renovate.json b/renovate.json index aca23099c69a..6e76a909a536 100644 --- a/renovate.json +++ b/renovate.json @@ -20,6 +20,11 @@ }, { "description": "Group all etcd updates (go.mod and Makefile) into a single PR", + "matchManagers": [ + "gomod", + "custom.regex" + ], + "enabled": true, "matchPackageNames": [ "go.etcd.io/etcd/**/v3", "etcd-io/etcd"