-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
71 lines (71 loc) · 1.75 KB
/
renovate.json
File metadata and controls
71 lines (71 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
":automergePatch",
":automergeMinor",
"group:allNonMajor"
],
"timezone": "Asia/Tokyo",
"schedule": [
"before 10am on monday"
],
"labels": [
"dependencies"
],
"commitMessagePrefix": "chore(deps):",
"prConcurrentLimit": 5,
"prCreation": "immediate",
"rebaseWhen": "behind-base-branch",
"packageRules": [
{
"description": "Go language dependencies update",
"matchDatasources": ["go"],
"matchUpdateTypes": ["major"],
"groupName": "Go major dependencies",
"schedule": [
"before 10am on the first day of the month"
]
},
{
"description": "golang.org/x packages grouping",
"matchDatasources": ["go"],
"matchPackageNames": ["golang.org/x{/,}**"],
"groupName": "golang.org/x packages",
"automerge": true
},
{
"description": "GitHub Actions update",
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions",
"pinDigests": true,
"automerge": true
},
{
"description": "Security patches are provided immediately",
"matchUpdateTypes": ["patch"],
"matchDatasources": ["go"],
"automerge": true,
"minimumReleaseAge": null
},
{
"description": "Vulnerable packages are given top priority",
"matchDatasources": ["go"],
"labels": ["security"],
"prPriority": 10
}
],
"minimumReleaseAge": "3 days",
"prHourlyLimit": 2,
"ignorePaths": [
"**/testdata/**",
"**/*.golden"
],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"osvVulnerabilityAlerts": true
}