From 259be7b289c42f821d4882ecbae0e90b7c32d837 Mon Sep 17 00:00:00 2001 From: Ciaran Roche Date: Fri, 15 May 2026 12:13:53 +0100 Subject: [PATCH] HYPERFLEET-1095 - chore: add renovate.json to fix broken MintMaker PRs Disables broken Go module digest updates, disables unnecessary indirect dependency updates, groups minor/patch updates into single PRs, and schedules all updates to run weekly on Mondays. Co-Authored-By: Claude --- renovate.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..65027f4 --- /dev/null +++ b/renovate.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "schedule": ["every monday"], + "packageRules": [ + { + "matchManagers": ["gomod"], + "matchUpdateTypes": ["digest"], + "enabled": false + }, + { + "matchManagers": ["gomod"], + "matchDepTypes": ["indirect"], + "enabled": false + }, + { + "matchManagers": ["gomod"], + "matchUpdateTypes": ["minor", "patch"], + "groupName": "go module minor/patch updates" + }, + { + "matchManagers": ["dockerfile"], + "groupName": "docker image updates" + } + ] +}