-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathrenovate.json
More file actions
24 lines (24 loc) · 661 Bytes
/
renovate.json
File metadata and controls
24 lines (24 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"packageRules": [
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch"],
"excludePackagePrefixes": ["@mikro-orm/"],
"enabled": false
},
{
"matchSourceUrls": ["https://github.com/mikro-orm/mikro-orm"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "mikro-orm"
}
],
"platformAutomerge": true,
"schedule": ["before 3am on the first day of the month"]
}