From 2fc019e931adabd98a46606c0622a41ff81439e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ma=C5=82ek?= Date: Mon, 3 Jun 2024 17:12:53 +0200 Subject: [PATCH] chore(ci): fix renovate regex (#311) --- renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 314c0b37a..d3987de90 100644 --- a/renovate.json +++ b/renovate.json @@ -35,7 +35,7 @@ ] }, { - "description": "Match versions in pkg/consts/dataplane.go that are properly annotated with `# renovate: datasource={} versioning={}.`", + "description": "Match versions in selected *.go files that are properly annotated with `// renovate: datasource={} depName={}.`", "customType": "regex", "datasourceTemplate": "docker", "fileMatch": [ @@ -43,7 +43,7 @@ "^internal/versions/controlplane\\.go$" ], "matchStrings": [ - ".+\\s+=\\s+\"(?.+)\"\\s+//\\s+renovate:\\s+datasource=(?.*)\\s+(?.+?)" + ".+\\s+=\\s+\"(?.+)\"\\s+//\\s+renovate:\\s+datasource=(?.*)\\s+depName=(?.+?)" ] } ]