-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathrenovate.json
More file actions
27 lines (27 loc) · 1.04 KB
/
renovate.json
File metadata and controls
27 lines (27 loc) · 1.04 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"packageRules": [
{
"matchPackagePatterns": "^Testably.Abstractions",
"groupName": [ "Testably.Abstractions packages" ]
},
{
"description": "Freeze the legacy System.Threading.Channels entries (net6.0=6.x, net8.0=8.x) so they stay aligned with the runtime-bundled assembly. Only the entry for newer TFMs (currently 10.x) is auto-updated.",
"matchPackageNames": ["System.Threading.Channels"],
"matchCurrentVersion": "/^(6|8)\\./",
"enabled": false
},
{
"description": "Freeze the System.Linq.Async entries that aren't on the latest line: the net6.0 entry on 6.x, and the net8.0 entry on 7.0.0. The entry for newer TFMs (currently 7.0.1) continues to be updated.",
"matchPackageNames": ["System.Linq.Async"],
"matchCurrentVersion": "/^(6\\.|7\\.0\\.0$)/",
"enabled": false
}
],
"ignoreDeps": [ "actions/download-artifact", "actions/upload-artifact" ],
"schedule": ["before 4am on monday"],
"labels": ["dependencies"]
}