-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathrenovate.json5
More file actions
94 lines (94 loc) · 2.45 KB
/
renovate.json5
File metadata and controls
94 lines (94 loc) · 2.45 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
87
88
89
90
91
92
93
94
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"config:best-practices",
"group:allNonMajor",
":semanticCommits",
":semanticCommitTypeAll(chore)",
":prHourlyLimitNone",
":prConcurrentLimitNone",
":maintainLockFilesMonthly"
],
addLabels: ["dep-bump"],
schedule: ["before 7am on Wednesday"],
timezone: "Etc/UTC",
customManagers: [
{
customType: "regex",
managerFilePatterns: ["/e2e-local.sh/"],
matchStrings: [
"PLAYWRIGHT_IMAGE=\"(?<packageName>mcr\\.microsoft\\.com/playwright):(?<currentValue>[^\\s]+)\""
],
datasourceTemplate: "docker"
}
],
rebaseWhen: "conflicted",
packageRules: [
{
groupName: "Siemens lint dependencies",
description: ["Update Siemens lint packages together"],
matchSourceUrls: ["https://github.com/siemens/lint"]
},
{
description: [
"Prevent Angular related major and minor updates. Those should be manually done"
],
matchPackageNames: [
"@angular/**",
"@angular-devkit/**",
"@angular-eslint/**",
"@angular-architects/**",
"@angular-builders/**",
"ng-packagr",
"rxjs",
"typescript",
"zone.js",
"tslib"
],
matchUpdateTypes: ["major", "minor"],
enabled: false
},
{
groupName: "Angular dependencies",
description: ["Update Angular packages"],
matchPackageNames: [
"@angular/**",
"@angular-devkit/**",
"@angular-eslint/**",
"@angular-architects/**",
"@angular-builders/**",
"ng-packagr",
"rxjs",
"typescript",
"zone.js",
"tslib"
],
matchUpdateTypes: ["patch"],
enabled: true
},
{
groupName: "ECharts",
description: [
"Update ECharts packages separately as they appeared to be less stable in the past."
],
matchPackageNames: ["echarts"]
},
{
groupName: "Map dependencies",
description: [
"Update map dependencies separately as they appeared to be less stable in the past."
],
matchPackageNames: ["ol", "ol-ext", "ol-mapbox-style", "@types/geojson"]
},
{
groupName: "E2E dependencies",
description: ["Update E2E packages"],
matchPackageNames: [
"@playwright/**",
"@axe-core/**",
"axe-html-reporter",
"mcr.microsoft.com/playwright"
]
}
]
}