forked from folio-org/platform-complete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
46 lines (43 loc) · 1.12 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
{
"baseBranches": ["master", "R1-2021","q3-2020"],
"branchPrefix": "renovate_",
"automerge": false,
"separateMinorPatch": true,
"separateMajorMinor": true,
"updateLockFiles": false,
"rangeStrategy": "replace",
"ignoreDeps": ["eslint","lodash","react","react-dom","react-redux","redux"],
"major": {
"enabled": false
},
"minor": {
"enabled": false
},
"patch": {
"enabled": true
},
"regexManagers": [
{
"fileMatch": [ "^install-extras.json$" ],
"matchStrings": [ "\\\"(?<moduleName>(mod-|edge-|okapi).*?)-(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+?)\\\"" ],
"datasourceTemplate": "docker",
"depNameTemplate": "folioorg/{{{moduleName}}}"
}
],
"packageRules": [
{
"baseBranchList": ["master"],
"packagePatterns": ["^@folio/"],
"groupName": "Master branch updates",
"updateTypes": ["minor","patch"],
"enabled": true
},
{
"baseBranchList": ["R1-2021"],
"packagePatterns": ["^@folio/", "^folioorg/"],
"groupName": "FOLIO R1 2021 updates",
"updateTypes": ["patch"],
"enabled": true
}
]
}