-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
89 lines (89 loc) · 1.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":automergePatch",
":ignoreUnstable",
":prHourlyLimit4",
":prConcurrentLimit10",
":prNotPending",
":rebaseStalePrs",
":combinePatchMinorReleases",
":enableVulnerabilityAlerts",
":semanticPrefixFixDepsChoreOthers"
],
"minimumReleaseAge": "3 days",
"timezone": "GMT",
"schedule": [
"after 1pm every weekday",
"before 9pm every weekday"
],
"prHeader": "Repo Dependency Update",
"assignees": [
"royanger"
],
"reviewers": [
"royanger",
"tmilewski"
],
"labels": [
"deps"
],
"branchPrefix": "deps/",
"semanticCommitScope": "repo",
"commitMessageLowerCase": "never",
"separateMajorMinor": true,
"packageRules": [
{
"groupName": "Chrome Extension - Minor and Patch Dependency Update",
"groupSlug": "chrome-extension-minor-and-patch",
"matchFileNames": [
"apps/chrome-extension/package.json"
],
"matchUpdateTypes": [
"patch",
"minor"
],
"automerge": true,
"semanticCommitScope": "chrome-extension"
},
{
"groupName": "Chrome Extension - Major Dependency Update",
"groupSlug": "chrome-extension-major",
"matchFileNames": [
"apps/chrome-extension/package.json"
],
"matchUpdateTypes": [
"major"
],
"automerge": false,
"semanticCommitScope": "chrome-extension"
},
{
"groupName": "Web App - Minor and Patch Dependency Update",
"groupSlug": "web-app-minor-and-patch",
"matchFileNames": [
"apps/web-app/package.json"
],
"matchUpdateTypes": [
"patch",
"minor"
],
"automerge": true,
"semanticCommitScope": "web-app"
},
{
"groupName": "Web App - Major Dependency Update",
"groupSlug": "web-app-major",
"matchFileNames": [
"apps/web-app/package.json"
],
"matchUpdateTypes": [
"major"
],
"automerge": false,
"semanticCommitScope": "web-app"
}
]
}