diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 000000000000..dca7521ad8f3 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,29 @@ +{ + $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'], + }, + ], + postUpdateOptions: [ + 'gomodTidy', + 'gomodUpdateImportPaths', + ], + prConcurrentLimit: 30, +}