From 2ad2611867449ad12ae7f619c9b705f8f714c9f9 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Mon, 13 Jul 2026 13:24:56 +0200 Subject: [PATCH] renovate: fix AUTOMATION_RELEASE file pattern Use a glob pattern over the non working regex. The regex was incorrect as it was missing .* to match all names properly. Signed-off-by: Paul Holzinger --- renovate/defaults.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate/defaults.json5 b/renovate/defaults.json5 index 8d207ea..5e13bb3 100644 --- a/renovate/defaults.json5 +++ b/renovate/defaults.json5 @@ -99,7 +99,7 @@ and/or use the pre-commit hook: https://github.com/renovatebot/pre-commit-hooks { "customType": "regex", "managerFilePatterns": [ - "/^.github/workflows/*.yml$/" + ".github/workflows/*.yml" ], "matchStrings": [ "AUTOMATION_RELEASE:\\s+(?.+)\\s*"