From 9b63fe428c93accc040aebb3ca41e460bc9bfa84 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Sat, 12 Oct 2024 22:47:12 +0200 Subject: [PATCH] Create main.json5 Signed-off-by: Kjeld Schouten --- renovate/main.json5 | 57 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 renovate/main.json5 diff --git a/renovate/main.json5 b/renovate/main.json5 new file mode 100644 index 00000000000..1ab70fc5ba8 --- /dev/null +++ b/renovate/main.json5 @@ -0,0 +1,57 @@ +{ + // Main Renovate configuration that lists package rules for various paths + "packageRules": [ + { + "paths": ["/.github/**"], + "enabled": true, + "extends": [ + "github>truecharts/public/renovate/folders/github.json5" + ] + }, + { + "paths": ["/charts/**"], + "enabled": true, + "extends": [ + "github>truecharts/public/renovate/folders/charts.json5" + ] + }, + { + "paths": ["/containers/**"], + "enabled": true, + "extends": [ + "github>truecharts/public/renovate/folders/containers.json5" + ] + }, + { + "paths": ["/clusters/**"], + "enabled": true, + "extends": [ + "github>truecharts/public/renovate/folders/clusters.json5" + ] + }, + { + "paths": ["/repositories/**"], + "enabled": true, + "extends": [ + "github>truecharts/public/renovate/folders/repositories.json5" + ] + }, + { + "paths": ["/clustertool/**"], + "enabled": true, + "extends": [ + "github>truecharts/public/renovate/folders/clustertool.json5" + ] + }, + { + "paths": ["/website/**"], + "enabled": true, + "extends": [ + "github>truecharts/public/renovate/folders/website.json5" + ] + } + ], + "ignoreDeps": [ + // List any dependencies to ignore globally if needed + ] +}