-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathrenovate.json
More file actions
80 lines (80 loc) · 2.44 KB
/
Copy pathrenovate.json
File metadata and controls
80 lines (80 loc) · 2.44 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "America/Los_Angeles",
"schedule": ["before 6am on Monday"],
"minimumReleaseAge": "7 days",
"osvVulnerabilityAlerts": true,
"vulnerabilityAlerts": {
"enabled": true,
"addLabels": ["security"],
"schedule": ["at any time"],
"minimumReleaseAge": null
},
"dependencyDashboard": true,
"labels": ["dependencies"],
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"rangeStrategy": "replace",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 6am on Monday"]
},
"packageRules": [
{
"description": "Group compatible non-major npm updates that are not in a coupled family",
"matchManagers": ["bun"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "npm non-major dependencies"
},
{
"description": "Keep the generated AWS and Smithy release families aligned",
"matchPackageNames": ["@aws-sdk/**", "@smithy/**"],
"groupName": "AWS SDK"
},
{
"description": "Keep OpenTelemetry API, SDK, and exporters on compatible release lines",
"matchPackageNames": ["@opentelemetry/**"],
"groupName": "OpenTelemetry"
},
{
"description": "Keep React, Next.js, and their platform packages aligned",
"matchPackageNames": [
"react",
"react-dom",
"next",
"@next/**",
"@types/react",
"@types/react-dom"
],
"groupName": "React and Next.js"
},
{
"description": "Keep Radix primitives on one tested release family",
"matchPackageNames": ["@radix-ui/**"],
"groupName": "Radix UI"
},
{
"description": "Keep TipTap extensions and ProseMirror bindings aligned",
"matchPackageNames": ["@tiptap/**"],
"groupName": "TipTap"
},
{
"description": "Keep React Email packages and CLI aligned",
"matchPackageNames": ["react-email", "@react-email/**"],
"groupName": "React Email"
},
{
"description": "Keep Trigger.dev runtime, build package, and CLI aligned",
"matchPackageNames": ["@trigger.dev/**", "trigger.dev"],
"groupName": "Trigger.dev"
},
{
"description": "Group immutable GitHub Actions digest refreshes",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["digest"],
"groupName": "GitHub Actions digests",
"minimumReleaseAge": null
}
]
}