Files
rinoa-docker/renovate.json
T
Trez.One 8e2c31cc0f
renovate/config-validation Validation Failed
Attempting to fix matchPackagePatterns for Alpine rule.
2025-09-05 16:03:31 -04:00

64 lines
1.8 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"prHourlyLimit": 2,
"prConcurrentLimit": 5,
"dependencyDashboard": true,
"labels": [
"dependencies",
"renovate"
],
"schedule": [
"before 6am on monday"
],
"packageRules": [
{
"description": "Pin ClickHouse to the exact version used by Signoz",
"matchPackageNames": ["clickhouse/clickhouse-server"],
"allowedVersions": "^24\\.1\\.2-alpine$",
"groupName": "signoz-clickhouse",
"semanticCommitScope": "signoz-clickhouse"
},
{
"description": "Allow only Alpine tag upgrades for all Alpine-based images",
"matchDatasources": ["docker"],
"matchPackagePatterns": [".*alpine.*"],
"allowedVersions": ".*alpine.*",
"groupName": "alpine-upgrades",
"semanticCommitScope": "{{depName}}"
},
{
"description": "Pin postgres image never upgrade",
"matchPackageNames": ["postgres"],
"pin": true,
"semanticCommitScope": "postgres"
},
{
"description": "Pin pgvector image never upgrade",
"matchPackageNames": ["pgvector/pgvector"],
"pin": true,
"semanticCommitScope": "pgvector"
},
{
"description": "Pin pgvectors image never upgrade",
"matchPackageNames": ["pgvecto-rs/pgvecto-rs"],
"pin": true,
"semanticCommitScope": "pgvecto-rs"
},
{
"description": "Default rule for all remaining Docker images",
"matchDatasources": ["docker"],
"groupName": "docker-images",
"semanticCommitScope": "{{depName}}"
}
],
"customManagers": [],
"branchNameStrict": true,
"branchPrefix": "renovate/",
"branchTopic": "{{service}}/{{depName}}",
"commitMessageAction": "Update",
"commitMessageTopic": "{{service}}/{{depName}}"
}