-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathrenovate.json
More file actions
28 lines (28 loc) · 843 Bytes
/
renovate.json
File metadata and controls
28 lines (28 loc) · 843 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
28
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"automerge": true,
"automergeType": "branch",
"packageRules": [
{
"matchPackageNames": ["System.Reactive"],
"enabled": false,
"description": [
"Do not auto-update System.Reactive as it is a user-visible dependency of the AvaloniaMath package."
]
},
{
"matchPackageNames": [
"ApprovalTests",
"xunit.runner.visualstudio"
],
"matchUpdateTypes": "major",
"enabled": false,
"description": [
"TODO[#517]: A major update of this package doesn't support .NET 4.6.2 needed for our tests."
]
}
]
}