-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
32 lines (32 loc) · 878 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
29
30
31
32
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"rebaseWhen": "conflicted",
"schedule": ["before 5am"],
"postUpdateOptions": ["pnpmDedupe"],
"packageRules": [
{
"labels": ["📦 deps", "🤖 bot"],
"matchPackageNames": ["*"]
},
{
"labels": ["⚠️ major", "📦 deps", "🤖 bot"],
"matchUpdateTypes": ["major"]
},
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["*"]
},
{
"description": "Don't bump engines field in package.json",
"matchPackageNames": ["node", "pnpm"],
"matchManagers": ["npm"],
"matchDepTypes": ["engines"],
"rangeStrategy": "auto"
}
],
"rangeStrategy": "pin",
"prConcurrentLimit": 5
}