-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
48 lines (47 loc) · 1.42 KB
/
renovate.json
File metadata and controls
48 lines (47 loc) · 1.42 KB
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
47
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"labels": ["dependencies"],
"extends": [
"config:recommended"
],
"ignorePresets": [
":ignoreModulesAndTests"
],
"ignorePaths": [
"Build/**"
],
"ignoreDeps": [
"AwesomeAssertions",
"Microsoft.NET.Test.Sdk"
],
"packageRules": [
{
"matchSourceUrls": [
"https://github.com/dotnet/aspnetcore",
"https://github.com/dotnet/efcore",
"https://github.com/dotnet/extensions",
"https://github.com/dotnet/fsharp",
"https://github.com/dotnet/maui",
"https://github.com/dotnet/roslyn",
"https://github.com/dotnet/runtime",
"https://github.com/dotnet/scaffolding",
"https://github.com/dotnet/sdk",
"https://github.com/dotnet/windowsdesktop",
"https://github.com/dotnet/winforms",
"https://github.com/dotnet/wpf"
],
"enabled": false
},
{
"matchPackageNames": [
"xunit.runner.visualstudio"
],
"allowedVersions": "< 3.0.0"
},
{
"matchPackageNames": [ "*" ],
"description": "Every month on the first day of the month",
"schedule": [ "* * 1 * *" ]
}
]
}