From 60f2e4716e858c068e97961f4d72f69e08399c79 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Mon, 29 Sep 2025 11:24:20 -0400 Subject: [PATCH] customManager rules. --- default.json | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/default.json b/default.json index f7d9ab3..7517695 100644 --- a/default.json +++ b/default.json @@ -70,5 +70,51 @@ "versioning": "docker", "pinDigests": true } + ], + "customManagers": [ + { + "description": "Update flarectl version in workflows", + "fileMatch": [ + ".github/workflows/.*\\.ya?ml$", + ".gitea/workflows/.*\\.ya?ml$" + ], + "matchStrings": ["FLARECTL_VERSION: \\\"(?.*?)\\\""], + "datasourceTemplate": "github-releases", + "packageNameTemplate": "cloudflare/cloudflare-go", + "versioningTemplate": "semver" + }, + { + "description": "Update Vault version in workflows", + "fileMatch": [ + ".github/workflows/.*\\.ya?ml$", + ".gitea/workflows/.*\\.ya?ml$" + ], + "matchStrings": ["HC_VAULT_VERSION: \\\"(?.*?)\\\""], + "datasourceTemplate": "github-releases", + "packageNameTemplate": "hashicorp/vault", + "versioningTemplate": "semver" + }, + { + "description": "Update tea CLI version in workflows", + "fileMatch": [ + ".github/workflows/.*\\.ya?ml$", + ".gitea/workflows/.*\\.ya?ml$" + ], + "matchStrings": ["TEA_VERSION: \\\"(?.*?)\\\""], + "datasourceTemplate": "github-releases", + "packageNameTemplate": "go-gitea/tea", + "versioningTemplate": "semver" + }, + { + "description": "Update Renovate version in workflows", + "fileMatch": [ + ".github/workflows/.*\\.ya?ml$", + ".gitea/workflows/.*\\.ya?ml$" + ], + "matchStrings": ["RENOVATE_VERSION: \\\"(?.*?)\\\""], + "datasourceTemplate": "github-releases", + "packageNameTemplate": "renovatebot/renovate", + "versioningTemplate": "semver" + } ] }