forked from renovatebot/renovate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
51 lines (51 loc) · 1.38 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
{
"extends": [
"config:base",
":rebaseStalePrs",
":automergeMinor",
":label(ready)",
"group:linters",
":masterIssue",
":assignee(rarkins)"
],
"lockFileMaintenance": {
"enabled": true,
"schedule": "at any time",
"stabilityDays": 0,
"masterIssueApproval": true
},
"postUpdateOptions": ["yarnDedupeHighest"],
"semanticCommitScope": "deps",
"dockerfile": {
"pinDigests": true,
"semanticCommitType": "build"
},
"prBodyDefinitions": {
"Sourcegraph": "[![code search for \"{{{depName}}}\"](https://sourcegraph.com/search/badge?q=repo:%5Egithub%5C.com/{{{repository}}}%24+case:yes+-file:package%28-lock%29%3F%5C.json+{{{depName}}}&label=matches)](https://sourcegraph.com/search?q=repo:%5Egithub%5C.com/{{{repository}}}%24+case:yes+-file:package%28-lock%29%3F%5C.json+{{{depName}}})"
},
"prBodyColumns": ["Package", "Update", "Type", "Change", "Sourcegraph"],
"stabilityDays": 3,
"prCreation": "not-pending",
"packageRules": [
{
"datasources": ["docker"],
"automerge": false
},
{
"updateTypes": ["major"],
"masterIssueApproval": true
},
{
"packageNames": ["npm", "yarn"],
"automerge": false
},
{
"depTypeList": ["dependencies"],
"semanticCommitType": "build"
},
{
"packageNames": ["semantic-release"],
"semanticCommitType": "build"
}
]
}