From d66ac4afdbf0c252e0adc62590a323f0a19ef192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ma=C5=82ek?= Date: Mon, 20 May 2024 22:33:33 +0200 Subject: [PATCH] chore(ci): add renovate config for .tools_versions.yaml (#278) --- renovate.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 1bb7ded68..e14850f2f 100644 --- a/renovate.json +++ b/renovate.json @@ -18,11 +18,21 @@ "description": "Match dependencies in config/samples/.*.yaml that are properly annotated with `# renovate: datasource={} versioning={}.`", "customType": "regex", "fileMatch": [ - "^config/samples/.*.yaml$" + "^config/samples/.*\\.yaml$" ], "matchStrings": [ "#\\s+renovate:\\s+datasource=(?.*)\\s+versioning=(?.*?)\\n.+image:\\s+(?.+?):(?.+)" ] + }, + { + "description": "Match dependencies in .tools_verisons.yaml that are properly annotated with `# renovate: datasource={} depName={}.`", + "customType": "regex", + "fileMatch": [ + "\\.tools_versions\\.yaml$" + ], + "matchStrings": [ + "# renovate: datasource=(?.*?) depName=(?.*?)\\n.+\"(?.*?)\"" + ] } ] }