From ea22d3f11479f4ba99aee8e17aa4e38ccc886e88 Mon Sep 17 00:00:00 2001 From: Flook Peter Date: Fri, 27 Sep 2024 12:27:57 +0800 Subject: [PATCH] Make regex non-greedy when matching env name --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 197ae28..aab38f6 100644 --- a/renovate.json +++ b/renovate.json @@ -7,7 +7,7 @@ { "customType": "regex", "fileMatch": ["^docker(.*).yml$"], - "matchStrings": ["image: \"(?.*?):\\${(?:.*):?-(?.*?)}\""], + "matchStrings": ["image: \"(?.*?):\\${(?:.*?):?-(?.*?)}\""], "datasourceTemplate": "docker" } ]