-
Notifications
You must be signed in to change notification settings - Fork 9
/
renovate.json5
38 lines (32 loc) · 975 Bytes
/
renovate.json5
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
{
// start with default Renovate settings
"extends": [
"config:base"
],
// this allows us to configure settings for minor and patch updates separately
"separateMinorPatch": true,
// rules for specific subsets of packages
"packageRules": [
{
// for all patch updates
"updateTypes": ["patch"],
// create a branch, wait for test results, and automerge if tests pass
"automerge": true,
"automergeType": "branch"
},
{
// for minor updates that aren't 0.x
"updateTypes": ["minor"],
"matchCurrentVersion": "!/^[~^]?0/",
// create a branch, wait for test results, and automerge if tests pass
"automerge": true,
"automergeType": "branch"
}
],
// bump the range even if the new version satisfies the existing range, e.g. ^1.0.0 -> ^1.1.0
"rangeStrategy": "bump",
// update lock files (default schedule is once a week)
"lockFileMaintenance": {
"enabled": true
}
}