-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
84 lines (84 loc) · 2.32 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
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
{
"extends": [
"config:base",
"helpers:pinGitHubActionDigests",
":dependencyDashboard",
"group:allApollographql",
"group:fortawesome",
"group:reactMonorepo",
"group:storybookMonorepo",
"npm:unpublishSafe",
"packages:eslint",
"packages:jsUnitTest",
"group:nodeJs",
"group:linters"
],
"labels": ["dependencies"],
"lockFileMaintenance": {
"enabled": true
},
"packageRules": [
{
"rebaseWhen": "behind-base-branch",
"matchUpdateTypes": ["patch", "minor", "pin", "digest"]
},
{
"description": ["Group minor and patch updates into a single PR"],
"groupName": "dependencies",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"description": [
"Group minor and patch updates for devDependencies into a single PR"
],
"groupName": "devDependencies",
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"labels": ["devDependencies"]
},
{
"description": [
"Group minor and patch updates for github-actions into a single PR"
],
"groupName": "github-actions",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch", "digest"],
"labels": ["github-actions"]
},
{
"description": [
"Group minor and patch updates for docker-compose files into a single PR"
],
"groupName": "docker-compose",
"matchManagers": ["docker-compose"],
"matchUpdateTypes": ["minor", "patch"],
"labels": ["docker-compose"]
},
{
"matchPackageNames": ["uswds"],
"enabled": false
},
{
"matchManagers": ["dockerfile"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": ["Group updates for OTEL into a single PR"],
"groupName": "otel",
"matchUpdateTypes": ["minor", "patch"],
"matchPackagePrefixes": ["@opentelemetry"],
"labels": ["otel"]
},
{
"description": ["Group updates for Storybook into a single PR"],
"groupName": "storybook",
"matchUpdateTypes": ["minor", "patch"],
"matchPackagePatterns": ["^@storybook", "^storybook", "storybook$"],
"labels": ["storybook"]
}
],
"ignorePresets": [":prHourlyLimit2"]
}