From 45c23111b5b19ba2c0aa1547a84795a3ec4bbef5 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Mon, 25 Apr 2022 00:44:25 +0200 Subject: [PATCH] ci(renovate): Resolve 'invalid regExp for fileMath' Renovate uses JS Regular Expressions which are not glob. Therefore this wrong regex has to be sorted out. The solution is inspired by the fileMath of the flux manager. --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index e5407422f..cde128fd5 100644 --- a/renovate.json +++ b/renovate.json @@ -14,7 +14,7 @@ }, "regexManagers": [ { - "fileMatch": ["*.yaml$"], + "fileMatch": ["\\.yaml$"], "matchStrings": [ "# renovate:\\n\\s+image: \"?'?(?<depName>[^:\\s]+?):(?<currentValue>[^\"]*?)\"?'?\\s" ], -- GitLab