From a7a40e1b031bbc554dd08a7f34b05ded1c46e85a Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Mon, 29 Sep 2025 05:57:08 -0400 Subject: [PATCH] Adding customManagers for workflow env dependencies. --- renovate.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 4354f02..ebe222f 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,25 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["local>trez/renovate-config"], - "ignorePaths": ["ovos-compose/**"] + "ignorePaths": ["ovos-compose/**"], + "customManagers": [ + { + "fileMatch": [ + ".github/workflows/.*\\.ya?ml$", + ".gitea/workflows/.*\\.ya?ml$" + ], + "matchStrings": [ + "(FLARECTL_VERSION|HC_VAULT_VERSION|TEA_VERSION|RENOVATE_VERSION):\\s*\"(?.*?)\"" + ], + "datasourceTemplate": "github-releases", + "depNameTemplate": "{{depName}}", + "versioningTemplate": "semver", + "depNameTemplates": { + "FLARECTL_VERSION": "cloudflare/cloudflare-go", + "HC_VAULT_VERSION": "hashicorp/vault", + "TEA_VERSION": "go-gitea/tea", + "RENOVATE_VERSION": "renovatebot/renovate" + } + } + ] }