summaryrefslogtreecommitdiffstats
path: root/renovate.json
diff options
context:
space:
mode:
Diffstat (limited to 'renovate.json')
-rw-r--r--renovate.json24
1 files changed, 21 insertions, 3 deletions
diff --git a/renovate.json b/renovate.json
index 292a38383f..e9ce2a69b2 100644
--- a/renovate.json
+++ b/renovate.json
@@ -20,7 +20,13 @@
"packageRules": [
{
"description": "Require approval for go and python minor version",
- "matchDepNames": ["go", "python", "golang", "docker.io/golang", "docker.io/library/golang"],
+ "matchDepNames": [
+ "go",
+ "python",
+ "golang",
+ "docker.io/golang",
+ "docker.io/library/golang"
+ ],
"matchUpdateTypes": ["minor"],
"dependencyDashboardApproval": true
},
@@ -30,8 +36,18 @@
"dependencyDashboardApproval": true
},
{
+ "description": "Schedule some deps less frequently",
+ "matchDepNames": ["github.com/google/pprof"],
+ "extends": ["schedule:quarterly"]
+ },
+ {
"description": "Group golang packages",
- "matchDepNames": ["go", "golang", "docker.io/golang", "docker.io/library/golang"],
+ "matchDepNames": [
+ "go",
+ "golang",
+ "docker.io/golang",
+ "docker.io/library/golang"
+ ],
"groupName": "golang packages"
},
{
@@ -81,7 +97,9 @@
"description": "Update deps inside Makefile",
"customType": "regex",
"fileMatch": ["^Makefile$"],
- "matchStrings": [" \\?= (?<depName>.+?)@(?<currentValue>.+?) # renovate: datasource=(?<datasource>.+?)\\s"]
+ "matchStrings": [
+ " \\?= (?<depName>.+?)@(?<currentValue>.+?) # renovate: datasource=(?<datasource>.+?)\\s"
+ ]
}
]
}