-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrenovate.json
More file actions
46 lines (46 loc) · 1.49 KB
/
Copy pathrenovate.json
File metadata and controls
46 lines (46 loc) · 1.49 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits",
":semanticCommitTypeAll(chore)",
"helpers:pinGitHubActionDigests"
],
"minimumReleaseAge": "3 days",
"lockFileMaintenance": {
"enabled": false
},
"prConcurrentLimit": 10,
"branchConcurrentLimit": 10,
"rangeStrategy": "bump",
"packageRules": [
{
"matchCategories": ["javascript"],
"matchUpdateTypes": ["minor", "patch"],
"matchFileNames": ["backend/package.json", "package.json"],
"groupName": "backend minor+patch"
},
{
"matchCategories": ["javascript"],
"matchUpdateTypes": ["minor", "patch"],
"matchFileNames": ["frontend/package.json"],
"groupName": "frontend minor+patch"
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch", "digest", "pin", "pinDigest"],
"groupName": "github-actions minor+patch"
},
{
"description": "TypeScript majors have historically required code changes (6 -> 7 needed the lint-config refresh); keep them individually reviewed.",
"matchPackageNames": ["typescript"],
"matchUpdateTypes": ["major"],
"labels": ["needs-manual-verification"]
},
{
"description": "elysia-rate-limit v5 requires Elysia 2; stay on the latest Elysia 1-compatible release until the framework is upgraded.",
"matchPackageNames": ["elysia-rate-limit"],
"allowedVersions": "<5.0.0"
}
]
}