🔧 Renovate: migrate renovate config #351

Merged
Trez.One merged 1 commits from renovate/migrate-config into main 2025-09-29 11:04:40 -04:00
+48 -22
View File
@@ -1,11 +1,17 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>trez/renovate-config"], "extends": [
"local>trez/renovate-config"
],
"packageRules": [ "packageRules": [
{ {
"description": "Freeze ClickHouse and Zookeeper", "description": "Freeze ClickHouse and Zookeeper",
"matchDatasources": ["docker"], "matchDatasources": [
"matchManagers": ["docker-compose"], "docker"
],
"matchManagers": [
"docker-compose"
],
"matchPackageNames": [ "matchPackageNames": [
"clickhouse/clickhouse-server", "clickhouse/clickhouse-server",
"bitnami/zookeeper" "bitnami/zookeeper"
@@ -14,53 +20,73 @@
}, },
{ {
"description": "Pin Postgres, pgvector, and pgvecto-rs images", "description": "Pin Postgres, pgvector, and pgvecto-rs images",
"matchDatasources": ["docker"], "matchDatasources": [
"matchManagers": ["docker-compose"], "docker"
"matchPackageNames": ["postgres", "pgvector", "pgvecto-rs"], ],
"matchManagers": [
"docker-compose"
],
"matchPackageNames": [
"postgres",
"pgvector",
"pgvecto-rs"
],
"pinDigests": true "pinDigests": true
} }
], ],
"customManagers": [ "customManagers": [
{ {
"customType": "regex",
"description": "Update flarectl version in workflows", "description": "Update flarectl version in workflows",
"fileMatch": [ "managerFilePatterns": [
".github/workflows/.*\\.ya?ml$", "/.github/workflows/.*\\.ya?ml$/",
".gitea/workflows/.*\\.ya?ml$" "/.gitea/workflows/.*\\.ya?ml$/"
],
"matchStrings": [
"FLARECTL_VERSION: \\\"(?<currentValue>.*?)\\\""
], ],
"matchStrings": ["FLARECTL_VERSION: \\\"(?<currentValue>.*?)\\\""],
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases",
"packageNameTemplate": "cloudflare/cloudflare-go", "packageNameTemplate": "cloudflare/cloudflare-go",
"versioningTemplate": "semver" "versioningTemplate": "semver"
}, },
{ {
"customType": "regex",
"description": "Update Vault version in workflows", "description": "Update Vault version in workflows",
"fileMatch": [ "managerFilePatterns": [
".github/workflows/.*\\.ya?ml$", "/.github/workflows/.*\\.ya?ml$/",
".gitea/workflows/.*\\.ya?ml$" "/.gitea/workflows/.*\\.ya?ml$/"
],
"matchStrings": [
"HC_VAULT_VERSION: \\\"(?<currentValue>.*?)\\\""
], ],
"matchStrings": ["HC_VAULT_VERSION: \\\"(?<currentValue>.*?)\\\""],
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases",
"packageNameTemplate": "hashicorp/vault", "packageNameTemplate": "hashicorp/vault",
"versioningTemplate": "semver" "versioningTemplate": "semver"
}, },
{ {
"customType": "regex",
"description": "Update tea CLI version in workflows", "description": "Update tea CLI version in workflows",
"fileMatch": [ "managerFilePatterns": [
".github/workflows/.*\\.ya?ml$", "/.github/workflows/.*\\.ya?ml$/",
".gitea/workflows/.*\\.ya?ml$" "/.gitea/workflows/.*\\.ya?ml$/"
],
"matchStrings": [
"TEA_VERSION: \\\"(?<currentValue>.*?)\\\""
], ],
"matchStrings": ["TEA_VERSION: \\\"(?<currentValue>.*?)\\\""],
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases",
"packageNameTemplate": "go-gitea/tea", "packageNameTemplate": "go-gitea/tea",
"versioningTemplate": "semver" "versioningTemplate": "semver"
}, },
{ {
"customType": "regex",
"description": "Update Renovate version in workflows", "description": "Update Renovate version in workflows",
"fileMatch": [ "managerFilePatterns": [
".github/workflows/.*\\.ya?ml$", "/.github/workflows/.*\\.ya?ml$/",
".gitea/workflows/.*\\.ya?ml$" "/.gitea/workflows/.*\\.ya?ml$/"
],
"matchStrings": [
"RENOVATE_VERSION: \\\"(?<currentValue>.*?)\\\""
], ],
"matchStrings": ["RENOVATE_VERSION: \\\"(?<currentValue>.*?)\\\""],
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases",
"packageNameTemplate": "renovatebot/renovate", "packageNameTemplate": "renovatebot/renovate",
"versioningTemplate": "semver" "versioningTemplate": "semver"