From 98a3dde5c26e4e87756c6aa7fc9b67ca0f1a42d1 Mon Sep 17 00:00:00 2001 From: Sebastian Mark Date: Sat, 15 Jul 2023 09:22:00 +0200 Subject: [PATCH] feat: add renovate configuration --- renovate.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..a9aaea0 --- /dev/null +++ b/renovate.json @@ -0,0 +1,29 @@ +{ + "extends": ["config:base"], + "prHourlyLimit": 5, + "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" + } + + ] +}