From 108127715cdcdb5eee116743976101f43acd6741 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 5 May 2025 13:12:44 +0000 Subject: [PATCH 1/2] chore(config): migrate config .renovaterc.json --- .renovaterc.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.renovaterc.json b/.renovaterc.json index fe5a88c..4f7df14 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -1,7 +1,11 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["local>infrastructure/renovate-config"], + "extends": [ + "local>infrastructure/renovate-config" + ], "argocd": { - "fileMatch": ["\\.yml$"] + "managerFilePatterns": [ + "/\\.yml$/" + ] } } -- 2.47.2 From 9584f2ccd231e9037b94b30656484edb529f353a Mon Sep 17 00:00:00 2001 From: Sebastian Mark Date: Mon, 5 May 2025 15:25:01 +0200 Subject: [PATCH 2/2] fix(renovate): update file match pattern for YAML files - use glob pattern instead of regex --- .renovaterc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.renovaterc.json b/.renovaterc.json index 4f7df14..7cb8365 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -5,7 +5,7 @@ ], "argocd": { "managerFilePatterns": [ - "/\\.yml$/" + "*.yml" ] } } -- 2.47.2