From 3b3cb6ff4861c00b07cc02d7f30b2f33fed9d078 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Mon, 29 Sep 2025 05:58:50 -0400 Subject: [PATCH] Adding customManagers for workflow env dependencies. --- renovate.json | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index cd5ce84..4048b18 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,24 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "local>Trez/renovate-config" + "extends": ["local>Trez/renovate-config"], + "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" + } + } ] }