From 86ab5cd539622cbf985c875aa7cb5172509a76d3 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 | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 000000000000..8b5395e5f8f4 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,36 @@ +{ + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + //'schedule:daily', + ], + baseBranches: [ + 'main', + ], + enabledManagers: [ + 'gomod', + ], + goGetDirs: [ + './...', + './api/...', + './client/internal/v2/...', + './client/pkg/...', + './client/v3/...', + './etcdctl/...', + './etcdutl/...', + './pkg/...', + './server/...', + './tests/...', + './tools/mod/...', + './tools/rw-heatmaps/...', + './tools/testgrid-analysis/...', + ], + labels: [ + 'dependencies', + 'go', + ], + postUpdateOptions: [ + 'gomodTidy', + 'gomodUpdateImportPaths', + ], +}