-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
86 lines (86 loc) · 2.58 KB
/
renovate.json
File metadata and controls
86 lines (86 loc) · 2.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>workleap/renovate-config",
"github>workleap/renovate-config:all-automerge.json"
],
"packageRules": [
{
"matchManagers": [
"nuget"
],
"groupName": "NuGet dependencies",
"matchPackageNames": [
"!/^Microsoft\\.Extensions\\./",
"!/^System\\./",
"!/^dotnet-sdk$/",
"!/^Microsoft\\.CodeAnalysis\\.CSharp\\./"
]
},
{
"matchManagers": [
"nuget"
],
"groupName": "Ignored NuGet dependencies",
"description": "These packages are usually set to a user-defined minimal supported version such as 6.0.0 for .NET 6, and they are overriden by consuming applications",
"enabled": false,
"matchPackageNames": [
"/^Microsoft\\.(Extensions|AspNetCore)\\./",
"/^System\\./",
"/^Microsoft\\.CodeAnalysis\\.CSharp\\./"
]
},
{
"matchManagers": [
"nuget"
],
"groupName": "Ignored MSBuild dependencies",
"description": "We want to be compatible with more tools (VS, Rider, dotnet, etc.), so we prefer using an older version",
"enabled": false,
"matchPackageNames": [
"/^Microsoft\\.Build\\.Utilities/"
]
}
],
"customManagers": [
{
"description": "Custom manager for renovating spectral version listed in .cs files",
"customType": "regex",
"managerFilePatterns": [
"/\\.cs$/"
],
"matchStringsStrategy": "any",
"matchStrings": [
"private const string SpectralVersion = \"(?<currentValue>[^\"]+)\";"
],
"datasourceTemplate": "github-tags",
"depNameTemplate": "stoplightio/spectral"
},
{
"description": "Custom manager for renovating oasdiff version listed in .cs files",
"customType": "regex",
"managerFilePatterns": [
"/\\.cs$/"
],
"matchStringsStrategy": "any",
"matchStrings": [
"private const string OasdiffVersion = \"(?<currentValue>[^\"]+)\";"
],
"datasourceTemplate": "github-tags",
"depNameTemplate": "Tufin/oasdiff"
},
{
"description": "Custom manager for renovating Swagger CLI version listed in .cs files",
"customType": "regex",
"managerFilePatterns": [
"/\\.cs$/"
],
"matchStringsStrategy": "any",
"matchStrings": [
"private const string SwaggerVersion = \"(?<currentValue>[^\"]+)\";"
],
"datasourceTemplate": "github-tags",
"depNameTemplate": "domaindrivendev/Swashbuckle.AspNetCore"
}
]
}