This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.json
More file actions
74 lines (74 loc) · 2.29 KB
/
default.json
File metadata and controls
74 lines (74 loc) · 2.29 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Forge Space shared Renovate preset — batching, auto-merge, and deferred ecosystem blockers",
"extends": [
"config:recommended",
":semanticCommits",
":semanticCommitTypeAll(chore)",
":dependencyDashboard",
"schedule:weekly",
"group:monorepos",
"group:recommended",
":automergeMinor",
":automergePatch",
":automergeLinters",
":automergeTesters",
":automergeTypes"
],
"labels": ["dependencies", "renovate"],
"rangeStrategy": "bump",
"prHourlyLimit": 4,
"prConcurrentLimit": 10,
"dependencyDashboardApproval": false,
"rebaseWhen": "conflicted",
"platformAutomerge": true,
"packageRules": [
{
"description": "Block TypeScript 6 until ecosystem catches up (ts-jest, @typescript-eslint, @astrojs/check)",
"matchPackageNames": ["typescript"],
"allowedVersions": "<6.0.0"
},
{
"description": "Block ESLint 10 until eslint-plugin-react supports it",
"matchPackageNames": ["eslint"],
"allowedVersions": "<10.0.0"
},
{
"description": "Group all npm patches into one weekly PR",
"matchManagers": ["npm"],
"matchUpdateTypes": ["patch"],
"groupName": "all patches",
"schedule": ["before 9am on monday"]
},
{
"description": "Group all npm minors (non-major) into one weekly PR",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor"],
"groupName": "all minors",
"schedule": ["before 9am on monday"]
},
{
"description": "Majors separate with no auto-merge — need review",
"matchUpdateTypes": ["major"],
"labels": ["dependencies", "renovate", "major-upgrade"],
"automerge": false
},
{
"description": "GitHub Actions updated monthly, grouped",
"matchManagers": ["github-actions"],
"groupName": "github-actions",
"schedule": ["before 9am on the first day of the month"],
"automerge": true
},
{
"description": "Python pip updates grouped (mcp-gateway)",
"matchManagers": ["pip_requirements", "pep621"],
"groupName": "python dependencies",
"schedule": ["before 9am on monday"]
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security", "vulnerability"]
}
}