Skip to content

Commit

Permalink
Add renovate config
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Valdes <[email protected]>
  • Loading branch information
ivanvc committed Nov 18, 2024
1 parent 643baac commit e8d0c70
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
$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',
],
packageRules: [
{
matchManagers: ['gomod'],
matchDepTypes: ['indirect'],
enabled: true,
},
],
postUpdateOptions: [
'gomodTidy',
'gomodUpdateImportPaths',
],
}

0 comments on commit e8d0c70

Please sign in to comment.