-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrenovate.json
More file actions
27 lines (27 loc) · 819 Bytes
/
renovate.json
File metadata and controls
27 lines (27 loc) · 819 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"rebaseWhen": "conflicted",
"labels": ["dependencies"],
"platformAutomerge": true,
"packageRules": [
{
"description": "Automerge security updates immediately",
"matchPackagePatterns": ["*"],
"matchCategories": ["security"],
"automerge": true,
"automergeType": "pr",
"minimumReleaseAge": "0 days",
"prPriority": 10
},
{
"description": "Automerge minor and patch updates after 3 days stabilization",
"groupName": "minor and patch updates",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "pr",
"minimumReleaseAge": "3 days"
}
]
}