-
Notifications
You must be signed in to change notification settings - Fork 1
/
renovate.json5
65 lines (65 loc) · 2 KB
/
renovate.json5
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":disableDependencyDashboard" // not have a GitHub issue listing the open updates
],
"timezone": "Europe/Berlin",
"automergeSchedule": [ "before 5:30am every weekday",
"after 7pm every weekday"], // branches are created, but not merged outside this schedule. Not in working hours because of rebases
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"ignoreDeps": [],
"packageRules": [
{
// version incompatibility with Spring Cloud (spring-cloud-starter-kubernetes-client-config), once version 3.2.0 is released this incompatibility should be fixed, see: https://github.com/spring-cloud/spring-cloud-release/wiki/Supported-Versions#supported-releases
"matchPackageNames": ["org.springframework.boot:*"],
"allowedVersions": "<3.4"
},
{
// version incompatibility with vue-tsc, see: https://github.com/vuejs/language-tools/pull/5020
"matchPackageNames": ["typescript"],
"allowedVersions": "<5.7"
},
{
"groupName": "all non-major frontend dependencies",
"matchPaths": [
"frontend/**"
],
"matchUpdateTypes": [
"minor",
"patch",
"patch",
"pin",
"pinDigest",
"digest"
],
"labels": [
"frontend-updates"
],
"platformAutomerge": false, // this would require more repository setup; also it interferes with automergeSchedule
"automergeType": "pr"
},
{
"groupName": "all non-major backend dependencies",
"matchPaths": [
"backend/**"
],
"matchUpdateTypes": [
"minor",
"patch",
"patch",
"pin",
"pinDigest",
"digest"
],
"labels": [
"backend-updates"
],
"platformAutomerge": false, // this would require more repository setup; also it interferes with automergeSchedule
"automergeType": "pr"
}
]
}