From c706cb01b30e701881ae1a0b7d5cf694754b2dd0 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 | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 00000000000..ed52350cedf --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,33 @@ +{ + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + //'schedule:daily', + ], + baseBranches: [ + 'main', + ], + enabledManagers: [ + 'gomod', + ], + labels: [ + 'dependencies', + ], + packageRules: [ + { + addLabels: ['go'], + enabled: true, + matchDepTypes: ['indirect'], + matchManagers: ['gomod'], + }, + { + groupName: 'gomod', + matchManagers: ['gomod'], + } + ], + postUpdateOptions: [ + 'gomodTidy', + 'gomodUpdateImportPaths', + ], + prConcurrentLimit: 30, +}