-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathrenovate.json
More file actions
158 lines (158 loc) · 2.82 KB
/
renovate.json
File metadata and controls
158 lines (158 loc) · 2.82 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"extends": [
"config:js-app"
],
"labels": [
"dependencies",
"javascript"
],
"platformAutomerge": true,
"automergeStrategy": "squash",
"packageRules": [
{
"matchDepNames": [
"yarn"
],
"automerge": true
},
{
"matchPackageNames": [
"vue"
],
"automerge": true
},
{
"groupName": "vite packages",
"matchPackageNames": [
"vite",
"vite-plugin-vuetify",
"@vitejs/**"
],
"automerge": true,
"schedule": [
"on saturday"
]
},
{
"groupName": "dev server packages",
"matchPackageNames": [
"concurrently",
"express",
"express-ws",
"json-server",
"nodemon"
],
"automerge": true,
"schedule": [
"on the 5th and 20th day of the month"
]
},
{
"matchPackageNames": [
"vuetify"
],
"schedule": [
"on the 7th day of the month"
]
},
{
"groupName": "lumino packages",
"matchPackageNames": [
"@lumino/**"
]
},
{
"groupName": "apollo packages",
"schedule": [
"on the 10th day of the month"
],
"matchPackageNames": [
"@apollo/**"
]
},
{
"matchPackageNames": [
"sass-embedded"
],
"schedule": [
"on the 25th day of the month"
]
},
{
"matchPackageNames": [
"@vueuse/core"
],
"automerge": true,
"schedule": [
"on the 9th day of the month"
]
},
{
"matchPackageNames": [
"vue-i18n"
],
"automerge": true,
"schedule": [
"on the 15th day of the month"
]
},
{
"groupName": "graphiql packages",
"matchPackageNames": [
"graphiql",
"preact"
],
"automerge": true,
"schedule": [
"on the 12th day of the month"
]
},
{
"groupName": "eslint packages",
"matchPackageNames": [
"standard",
"eslint*"
],
"automerge": true,
"schedule": [
"on the first day of the month"
]
},
{
"groupName": "tests packages",
"matchPackageNames": [
"@vue/test-utils",
"cross-fetch",
"jsdom",
"nyc",
"sinon",
"/^@?cypress/",
"/^@?vitest/",
"/coverage/",
"/istanbul/"
],
"automerge": true,
"schedule": [
"on sunday"
]
},
{
"groupName": "analysis view packages",
"matchPackageNames": [
"apexcharts",
"vue3-apexcharts"
],
"addLabels": [
"analysis views"
]
}
],
"vulnerabilityAlerts": {
"addLabels": [
"security"
]
},
"github-actions": {
"enabled": false
}
}