-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.json
141 lines (141 loc) · 3.83 KB
/
default.json
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Workleap's default preset",
"labels": [
"renovate"
],
"enabledManagers": [
"dockerfile",
"docker-compose",
"github-actions",
"helm-values",
"helmv3",
"custom.regex",
"terraform",
"npm",
"nuget"
],
"extends": [
"config:recommended",
":rebaseStalePrs",
":semanticCommits"
],
"ignorePresets": [
":ignoreModulesAndTests"
],
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"branchConcurrentLimit": 0,
"dependencyDashboard": false,
"gitAuthor": "Renovate Bot <[email protected]>",
"configMigration": true,
"minimumReleaseAge": "3 days",
"customManagers": [
{
"customType": "regex",
"description": "nuspec files manager",
"fileMatch": [
"\\.nuspec$"
],
"matchStringsStrategy": "any",
"matchStrings": [
"<dependency\\s+id=\"(?<depName>.*?)\"\\s+version=\"(?<currentValue>.*?)\"\\s*\\/>"
],
"datasourceTemplate": "nuget",
"versioningTemplate": "nuget"
}
],
"packageRules": [
{
"description": "Allow Workleap's NuGet and NPM packages to be updated immediately",
"minimumReleaseAge": "0 days",
"matchPackageNames": [
"/^Workleap\\./i",
"/^Officevibe\\./i",
"/^Sharegate\\./i",
"/^@workleap",
"/^@sharegate",
"/^@officevibe",
"/^@hopper-ui/",
"/^@orbit-ui/",
"/^@squide/"
]
},
{
"groupName": "gitversion-msbuild",
"description": "Disable major updates as their are breaking changes. The documentation is not complete, so it would require time to figure out the new configuration",
"matchPackageNames": [
"/^GitVersion\\.MsBuild$/i",
"/^gitversion\\.tool$/i"
],
"extends": [
":disableMajorUpdates"
]
},
{
"groupName": "dotnet-sdk",
"description": "Update major and non-major .NET SDK and runtime updates seperately to isolate breaking changes with a 3-day delay to account for the two of them (global.json, Docker images) not releasing at the same time. https://anthonysimmon.com/automate-dotnet-sdk-updates-global-json-renovate/",
"matchPackageNames": [
"dotnet-sdk",
"mcr.microsoft.com/dotnet/sdk",
"mcr.microsoft.com/dotnet/aspnet",
"mcr.microsoft.com/dotnet/runtime",
"mcr.microsoft.com/dotnet/runtime-deps"
],
"extends": [
":separateMajorReleases"
]
},
{
"groupName": "microsoft",
"matchPackageNames": [
"/^Microsoft\\./i",
"/^System\\./i"
],
"extends": [
":separateMajorReleases"
]
},
{
"groupName": "workleap",
"matchPackageNames": [
"/^[wW]orkleap\\./"
],
"extends": [
":separateMajorReleases"
]
},
{
"groupName": "hangfire monorepo",
"description": "Group Hangfire dependencies to make sure the build succeeds since they have strict version restrictions",
"matchManagers": ["nuget"],
"matchPackageNames": ["/^Hangfire(\\.|$)/i"]
},
{
"groupName": "mongodb monorepo",
"description": "Group MongoDB dependencies update in a single PR to avoid conflicts",
"matchManagers": ["nuget"],
"matchPackageNames": ["/^MongoDB\\./i"]
},
{
"groupName": "pipeline dependencies",
"matchManagers": [
"github-actions"
]
},
{
"groupName": "npm",
"matchManagers": ["npm"],
"extends": [
":pinDependencies",
":pinDevDependencies"
]
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": [
"security"
]
}
}