From 9472abe37eccb1a204d1ad8ae45ab02ad9ce3afc Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Thu, 16 Oct 2025 21:19:41 +0200 Subject: [PATCH] fix(renovate): replace managerFilePatterns with fileMatch --- renovate.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 41ecdd9..9172948 100644 --- a/renovate.json +++ b/renovate.json @@ -23,7 +23,9 @@ }, { "customType": "regex", - "fileMatch": ["^README\\.md$"], + "fileMatch": [ + "^README\\.md$" + ], "matchStrings": [ "CHART_VERSION=(?.*)" ], @@ -35,8 +37,8 @@ { "customType": "regex", "datasourceTemplate": "github-releases", - "managerFilePatterns": [ - "/.vscode/settings\\.json$/" + "fileMatch": [ + ".vscode/settings\\.json$" ], "matchStrings": [ "https:\\/\\/raw\\.githubusercontent\\.com\\/(?[^\\s]+?)\\/(?v[0-9.]+?)\\/schema\\/helm-testsuite\\.json" @@ -111,4 +113,4 @@ ], "executionMode": "update" } -} +} \ No newline at end of file