Skip to content

Commit e8d0c70

Browse files
committed
Add renovate config
Signed-off-by: Ivan Valdes <[email protected]>
1 parent 643baac commit e8d0c70

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/renovate.json5

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
3+
extends: [
4+
'config:recommended',
5+
//'schedule:daily',
6+
],
7+
baseBranches: [
8+
'main',
9+
],
10+
enabledManagers: [
11+
'gomod',
12+
],
13+
goGetDirs: [
14+
'./...',
15+
'./api/...',
16+
'./client/internal/v2/...',
17+
'./client/pkg/...',
18+
'./client/v3/...',
19+
'./etcdctl/...',
20+
'./etcdutl/...',
21+
'./pkg/...',
22+
'./server/...',
23+
'./tests/...',
24+
'./tools/mod/...',
25+
'./tools/rw-heatmaps/...',
26+
'./tools/testgrid-analysis/...',
27+
],
28+
labels: [
29+
'dependencies',
30+
'go',
31+
],
32+
packageRules: [
33+
{
34+
matchManagers: ['gomod'],
35+
matchDepTypes: ['indirect'],
36+
enabled: true,
37+
},
38+
],
39+
postUpdateOptions: [
40+
'gomodTidy',
41+
'gomodUpdateImportPaths',
42+
],
43+
}

0 commit comments

Comments
 (0)