From c9e8bc7a655890a13580b05584fc451dcbe27aea Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 5 May 2025 13:12:08 +0000 Subject: [PATCH 1/2] chore(config): migrate config .renovaterc.json --- .renovaterc.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.renovaterc.json b/.renovaterc.json index 05025e2..8e56b8a 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -7,8 +7,8 @@ { "customType": "regex", "description": "k3s", - "fileMatch": [ - "playbook\\.yml" + "managerFilePatterns": [ + "/playbook\\.yml/" ], "matchStrings": [ "\\s+k3s_version:\\s(?.*)" @@ -19,13 +19,13 @@ { "customType": "regex", "description": "ArgoCD", - "fileMatch": [ - "^argocd-bootstrap/.*\\.yml$" + "managerFilePatterns": [ + "/^argocd-bootstrap/.*\\.yml$/" ], "matchStrings": [ - "\\s+chart:\\s(?.*)", - "\\s+repo:\\s(?.*)", - "\\s+version:\\s(?.*)" + "\\s+chart:\\s(?.*)", + "\\s+repo:\\s(?.*)", + "\\s+version:\\s(?.*)" ], "matchStringsStrategy": "combination", "datasourceTemplate": "helm" @@ -33,8 +33,8 @@ { "customType": "regex", "description": "Baseline Manifests", - "fileMatch": [ - "\\.jsonnet$" + "managerFilePatterns": [ + "/\\.jsonnet$/" ], "matchStrings": [ "\\s+chart::\\s\\\"(?.*)\\\",", -- 2.47.2 From 86b0bca49ee1017e9bb0db6191d186f44ce32a05 Mon Sep 17 00:00:00 2001 From: Sebastian Mark Date: Mon, 5 May 2025 15:22:45 +0200 Subject: [PATCH 2/2] format(renovate): simplify regex patterns in config - use glob pattern instead of regex where possible --- .renovaterc.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.renovaterc.json b/.renovaterc.json index 8e56b8a..7d9dd23 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -8,7 +8,7 @@ "customType": "regex", "description": "k3s", "managerFilePatterns": [ - "/playbook\\.yml/" + "playbook.yml" ], "matchStrings": [ "\\s+k3s_version:\\s(?.*)" @@ -20,7 +20,7 @@ "customType": "regex", "description": "ArgoCD", "managerFilePatterns": [ - "/^argocd-bootstrap/.*\\.yml$/" + "argocd-bootstrap/*.yml" ], "matchStrings": [ "\\s+chart:\\s(?.*)", @@ -34,7 +34,7 @@ "customType": "regex", "description": "Baseline Manifests", "managerFilePatterns": [ - "/\\.jsonnet$/" + "*.jsonnet" ], "matchStrings": [ "\\s+chart::\\s\\\"(?.*)\\\",", -- 2.47.2