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.+\"(?.*?)\"" + ] } ] }