From 03bce15cfa50abb1c4a12172ff46f4fc1f4f83a0 Mon Sep 17 00:00:00 2001 From: Ivan Valdes Date: Sun, 17 Nov 2024 22:33:19 -0800 Subject: [PATCH] Add renovate config Signed-off-by: Ivan Valdes --- .github/renovate.json5 | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 000000000000..8f777db6ffa5 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,21 @@ +{ + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + //'schedule:daily', + ], + baseBranches: [ + 'main', + ], + enabledManagers: [ + 'gomod', + ], + labels: [ + 'dependencies', + 'go', + ], + postUpdateOptions: [ + 'gomodTidy', + 'gomodUpdateImportPaths', + ], +}