forked from Blagues-API/blagues-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
28 lines (28 loc) · 820 Bytes
/
renovate.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Blagues API renovate config",
"extends": ["config:base", "helpers:pinGitHubActionDigests", "group:allNonMajor"],
"schedule": ["before 3am on the first day of the month"],
"baseBranches": ["dev"],
"rangeStrategy": "bump",
"npm": {
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchPackagePatterns": ["eslint", "prettier", "commitlint", "lint-staged", "husky"],
"groupName": "Devtools Dependencies"
},
{
"matchPackagePatterns": ["prisma", "@prisma/client"],
"groupName": "Prisma Dependencies"
}
]
},
"lockFileMaintenance": {
"enabled": true
}
}