33 lines
946 B
JSON
33 lines
946 B
JSON
{
|
|
"$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"
|
|
}
|
|
|
|
]
|
|
}
|