-
Notifications
You must be signed in to change notification settings - Fork 2
/
renovate.json
45 lines (45 loc) · 1.38 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"packageRules": [
{
"matchPaths": ["package.json"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "dependencies minor and patch updates",
"groupSlug": "minor-patch",
"labels": ["dependencies"]
},
{
"matchPaths": ["package.json"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "devDependencies minor and patch updates",
"groupSlug": "dev-minor-patch",
"labels": ["devDependencies"]
},
{
"matchPaths": ["package.json"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "lunatic",
"groupSlug": "lunatic",
"matchPackagePatterns": ["@inseefr/lunatic.*"],
"labels": ["lunatic"],
"bumpVersion": "minor",
"dependencyDashboardApproval": true
},
{
"matchPaths": ["website/**"],
"matchDepTypes": ["dependencies", "devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "website minor and patch updates",
"groupSlug": "website-minor-patch",
"labels": ["dependencies", "website"]
},
{
"matchPaths": [".github/workflows/**", "ci/**"],
"labels": ["CI"]
}
]
}