-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathrenovate.json
More file actions
88 lines (88 loc) · 2.69 KB
/
Copy pathrenovate.json
File metadata and controls
88 lines (88 loc) · 2.69 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
81
82
83
84
85
86
87
88
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
":separatePatchReleases",
"group:monorepos",
"group:recommended"
],
"timezone": "Africa/Lagos",
"schedule": ["before 6am on Monday"],
"prHourlyLimit": 5,
"prConcurrentLimit": 15,
"labels": ["dependencies"],
"assignees": ["yosemite01"],
"reviewers": ["yosemite01"],
"vulnerabilityAlerts": {
"labels": ["security"],
"automerge": true
},
"packageRules": [
{
"description": "Auto-merge patch and minor dev dependency updates",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
},
{
"description": "Auto-merge patch and minor updates for production deps if CI passes",
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
},
{
"description": "Wait 3 days before bumping to avoid bad releases",
"matchUpdateTypes": ["minor", "patch"],
"minimumReleaseAge": "3 days"
},
{
"description": "Group and label Stellar/Soroban packages for smart-contract review",
"matchPackagePatterns": ["^@stellar/", "^stellar-", "soroban"],
"groupName": "Stellar SDK",
"labels": ["dependencies", "smart-contract"]
},
{
"description": "Group all Radix UI packages",
"matchPackagePatterns": ["^@radix-ui/"],
"groupName": "Radix UI"
},
{
"description": "Group all React Native / Expo packages",
"matchPackagePatterns": ["^react-native", "^expo", "^@expo/"],
"groupName": "React Native & Expo"
},
{
"description": "Group all OpenTelemetry packages",
"matchPackagePatterns": ["^@opentelemetry/", "^opentelemetry"],
"groupName": "OpenTelemetry"
},
{
"description": "Group TypeScript ESLint",
"matchPackagePatterns": ["^@typescript-eslint/"],
"groupName": "TypeScript ESLint"
},
{
"description": "Group testing tools",
"matchPackageNames": ["vitest", "jest", "playwright"],
"matchPackagePatterns": ["^@vitest/", "^@jest/", "^@playwright/"],
"groupName": "Testing"
},
{
"description": "Pin GitHub Actions to exact digest for security",
"matchManagers": ["github-actions"],
"pinDigests": true
},
{
"description": "Require manual review for major version bumps",
"matchUpdateTypes": ["major"],
"automerge": false,
"labels": ["dependencies", "major-update"]
}
]
}