-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathrenovate.json
More file actions
52 lines (52 loc) · 1.21 KB
/
renovate.json
File metadata and controls
52 lines (52 loc) · 1.21 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"commitMessageLowerCase": "never",
"labels": [
"dependencies"
],
"prConcurrentLimit": 5,
"prHourlyLimit": 3,
"schedule": [
"* 0-7 * * 1"
],
"packageRules": [
{
"groupName": "HAXTheWeb Dependencies",
"matchPackagePatterns": ["^@haxtheweb/"],
"schedule": ["at any time"]
},
{
"groupName": "Development Dependencies",
"matchDepTypes": ["devDependencies"],
"addLabels": ["skip changelog"],
"automerge": true,
"matchUpdateTypes": ["patch", "minor"],
"matchCurrentVersion": "!/^0/"
},
{
"groupName": "GitHub Actions",
"matchManagers": ["github-actions"],
"addLabels": ["skip changelog"],
"automerge": true,
"matchUpdateTypes": ["patch", "minor"],
"matchCurrentVersion": "!/^0/"
},
{
"enabled": false,
"matchUpdateTypes": ["digest"]
}
],
"ignoreDeps": [
"bootstrap",
"@emotion/styled",
"@emotion/core",
"strip-css-comments",
"actions/setup-node",
"@vaadin/vaadin-split-layout",
"@vaadin/vaadin-grid",
"@vaadin/vaadin-upload"
]
}