-
Notifications
You must be signed in to change notification settings - Fork 7
/
renovate.json
49 lines (49 loc) · 1.02 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":maintainLockFilesWeekly",
":enablePreCommit",
"group:all",
"customManagers:dockerfileVersions",
"schedule:weekly",
"docker:pinDigests",
"workarounds:supportRedHatImageVersion"
],
"packageRules": [
{
"description": "Enable go indirect dependencies",
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"indirect"
],
"enabled": true
},
{
"description": "Group go major upgrades",
"matchManagers": [
"gomod"
],
"matchUpdateTypes": [
"major"
],
"groupName": "go major updates"
},
{
"description": "Group patch updates",
"matchUpdateTypes": [
"patch"
],
"groupName": "Patch updates",
"automerge": true,
"platformAutomerge": true
}
],
"postUpdateOptions": [
"gomodUpdateImportPaths",
"gomodTidy"
],
"configMigration": true
}