From eae9e1459551c5041685cae022e086ac49ce0ca7 Mon Sep 17 00:00:00 2001 From: Grzegorz Piotrowski Date: Tue, 1 Jul 2025 14:30:14 +0100 Subject: [PATCH] NE-2074: UPSTREAM: : Disable Konflux Go module updates Disable automatic updates of Go dependencies made by MintMaker in Konflux. This is to prevent conflicts during rebases. Going forward, Go dependencies will only be updated through upstream rebases. * renovate.json (New): Custom configuration file for the MintMaker (Renovate) dependency management service. --- renovate.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000000..e406e3db56 --- /dev/null +++ b/renovate.json @@ -0,0 +1,5 @@ +{ + "gomod": { + "enabled": false + } +}