-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrenovate.json
More file actions
56 lines (53 loc) · 1.31 KB
/
renovate.json
File metadata and controls
56 lines (53 loc) · 1.31 KB
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
50
51
52
53
54
55
56
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"mergeConfidence:all-badges"
],
"baseBranchPatterns": ["main"],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"labels": ["renovate"],
"vulnerabilityAlerts": {
"enabled": true,
"labels": [
"security",
"CVE"
]
},
"osvVulnerabilityAlerts": true,
"dependencyDashboardOSVVulnerabilitySummary": "all",
"minimumReleaseAge": "7 days",
"minimumReleaseAgeBehaviour": "timestamp-optional",
"internalChecksFilter": "strict",
"prCreation": "not-pending",
"packageRules": [
{
"groupName": "go dependencies (patch versions)",
"description": "Group all patch updates into a single pull request",
"matchUpdateTypes": "patch",
"matchDatasources": [
"go"
]
},
{
"groupName": "go version",
"description": "Upgrade Go version in various places to keep them consistent",
"matchDepNames": [
"golang",
"cimg/go",
"go"
]
},
{
"groupName": "circleci/ex",
"description": "circleci/ex publishes with a prerelease tag and needs ignoreUnstable false",
"matchPackageNames": [
"github.com/circleci/ex"
],
"ignoreUnstable": false
}
]
}