baseline/renovate.json

34 lines
946 B
JSON
Raw Normal View History

2023-07-15 07:22:00 +00:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits",
":semanticCommitScopeDisabled"
],
"regexManagers": [
{
"description": "Baseline upgrades",
"fileMatch": ["\\.jsonnet$"],
"matchStrings": [
"\\s+chart::\\s\\\"(?<depName>.*)\\\",",
"\\s+version::\\s\\\"(?<currentValue>.*)\\\",",
"\\s+repo::\\s\\\"(?<registryUrl>.*)\\\","
],
"matchStringsStrategy": "combination",
"datasourceTemplate": "helm"
},
{
"description": "Edge case prometheus",
"fileMatch": ["prometheus-stack\\.jsonnet"],
"matchStrings": [
"\\s+chart::\\s\\\"(?<depName>.*)\\\",",
"\\s+\\\"version\\\"\:\\s\\\"(?<currentValue>.*)\\\",",
"\\s+repo::\\s\\\"(?<registryUrl>.*)\\\","
],
"matchStringsStrategy": "combination",
"datasourceTemplate": "helm"
}
]
}