From 149bc7965a6ac6a4358c1e135b667a7fc579bf96 Mon Sep 17 00:00:00 2001 From: gwg313 Date: Fri, 26 Jun 2026 21:24:48 -0400 Subject: [PATCH] add renovate Signed-off-by: gwg313 --- .github/renovate.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..ba64915 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "schedule": ["before 6am on monday"], + "ignorePaths": ["apps_bak/**", "apps_temp/**"], + "kubernetes": { + "fileMatch": ["apps/.+\\.ya?ml$", "platform/.+\\.ya?ml$"] + }, + "packageRules": [ + { + "description": "Skip images pinned to PR branches", + "matchCurrentVersion": "/^pr-/", + "enabled": false + }, + { + "description": "Group platform Helm chart updates", + "matchManagers": ["helmv3"], + "matchFileNames": ["platform/**"], + "groupName": "platform helm charts", + "automerge": false + }, + { + "description": "Group app image updates", + "matchManagers": ["kubernetes"], + "groupName": "app images", + "automerge": false + } + ] +}