From c3f9ccde05222e34c7a0d9ede08da147b8b9fc69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 15 May 2025 01:51:54 +0200 Subject: [PATCH] Configure renovate custom regex manager to update compose references MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/renovate.json b/renovate.json index 6336c0a..110e456 100644 --- a/renovate.json +++ b/renovate.json @@ -37,6 +37,27 @@ } ] }, + "customManagers": [ + { + "customType": "regex", + "description": [ + "Update 'REPOS_IMAGE' and 'BUILDER_IMAGE' in tekton files" + ], + "baseBranches": [ + "main" + ], + "fileMatch": [ + ".tekton/.*\\.yaml$", + ".tekton/.*\\.yml$" + ], + "matchStrings": [ + "REPOS_IMAGE=(?.*):(?.*)@(?.*)\\n", + "BUILDER_IMAGE=(?.*):(?.*)@(?.*)\\n" + ], + "versioningTemplate": "regex:(?.*)-(?\\d{8})(\\.n)?\\.(?\\d)", + "datasourceTemplate": "docker" + } + ], "baseBranches": ["main", "f40", "f41"], "packageRules": [ {