-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
27 lines (27 loc) · 650 Bytes
/
renovate.json
File metadata and controls
27 lines (27 loc) · 650 Bytes
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
{
"extends": ["config:recommended"],
"assignees": ["mkevenaar"],
"labels": ["renovate"],
"lockFileMaintenance": {
"enabled": true,
"extends": ["schedule:daily"]
},
"packageRules": [
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["major"],
"matchPackageNames": ["node"],
"enabled": false
},
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["minor", "patch", "bump", "digest", "rollback"],
"enabled": true
},
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest", "lockFileMaintenance"],
"enabled": true,
"automerge": true
}
]
}