-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json5
More file actions
47 lines (47 loc) · 1.36 KB
/
renovate.json5
File metadata and controls
47 lines (47 loc) · 1.36 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",
"extends": [
"github>mu88/common//renovate/default.json5"
],
"ignorePresets": [
":ignoreModulesAndTests"
],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/examples/**",
"**/__tests__/**",
"**/test/**",
"**/__fixtures__/**"
],
"packageRules": [
{
"description": "Unfortunately, these packages do not return a release timestamp. To prevent Renovate from skipping updates for these packages, we set the minimum release age behavior to 'timestamp-optional' so that updates will be created even without a release timestamp.",
"matchPackageNames": [
"mcr.microsoft.com/dotnet/aspnet",
"mcr.microsoft.com/dotnet/sdk",
"ghcr.io/mu88/screenshotcreator-playwright"
],
"minimumReleaseAgeBehaviour": "timestamp-optional"
},
{
"matchPackageNames": [
"Microsoft.Playwright"
],
"groupName": "Playwright",
"automerge": true,
"automergeType": "branch"
},
{
"description": "Major updates of Playwright Docker image refer to major .NET upgrade and will be done manually",
"matchUpdateTypes": [
"major"
],
"matchPackageNames": [
"*mu88/screenshotcreator-playwright"
],
"enabled": false
}
]
}