diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..0ca5c7f --- /dev/null +++ b/renovate.json @@ -0,0 +1,33 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + ":semanticCommits", + ":semanticCommitScopeDisabled" + ], + "regexManagers": [ + { + "description": "Baseline upgrades", + "fileMatch": ["\\.jsonnet$"], + "matchStrings": [ + "\\s+chart::\\s\\\"(?.*)\\\",", + "\\s+version::\\s\\\"(?.*)\\\",", + "\\s+repo::\\s\\\"(?.*)\\\"," + ], + "matchStringsStrategy": "combination", + "datasourceTemplate": "helm" + }, + { + "description": "Edge case prometheus", + "fileMatch": ["prometheus-stack\\.jsonnet"], + "matchStrings": [ + "\\s+chart::\\s\\\"(?.*)\\\",", + "\\s+\\\"version\\\"\:\\s\\\"(?.*)\\\",", + "\\s+repo::\\s\\\"(?.*)\\\"," + ], + "matchStringsStrategy": "combination", + "datasourceTemplate": "helm" + } + + ] +}