From e62b589d1b93ac6f0e176ef8e8ec461232e155a6 Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Tue, 22 Nov 2022 13:19:52 +0100
Subject: [PATCH] ci(renovate): Fix Chart.yaml renovate regex

This patch should fix the current problem that the renovate
annotation is not picked up by renovate as intended, resulting
in not updating the image appVersion in the helm charts.
---
 renovate.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/renovate.json b/renovate.json
index b05ec1984..5b0174f80 100644
--- a/renovate.json
+++ b/renovate.json
@@ -32,7 +32,7 @@
     {
       "fileMatch": ["Chart\\.yaml$"],
       "matchStrings": [
-        "# renovate:\\s+image=(?<depName>[^:\\s]+?)\\nappVersion:\\s+\"?'?(?<currentValue>[^\"]*?)\"?'?$"
+        "# renovate:\\s+image=(?<depName>[^:\\s]+?)\\nappVersion:\\s+\"?'?(?<currentValue>[^\"]*)\"?'?"
       ],
       "datasourceTemplate": "docker",
       "versioningTemplate": "docker"
-- 
GitLab