-
Notifications
You must be signed in to change notification settings - Fork 554
Expand file tree
/
Copy pathrenovate.json
More file actions
62 lines (62 loc) · 2 KB
/
Copy pathrenovate.json
File metadata and controls
62 lines (62 loc) · 2 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices", "group:allNonMajor"],
"schedule": ["before 6am on Monday"],
"pip-compile": {
"managerFilePatterns": ["/^build-constraints\\.txt$/"]
},
"customManagers": [
{
"customType": "regex",
"description": "MCPB CLI pinned in the release workflow",
"managerFilePatterns": ["/^\\.github/workflows/release\\.yml$/"],
"matchStrings": ["MCPB_VERSION:\\s*(?<currentValue>\\S+)"],
"depNameTemplate": "@anthropic-ai/mcpb",
"datasourceTemplate": "npm"
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"schedule": ["at any time"]
},
"packageRules": [
{
"description": "Managed by release workflow, not Renovate",
"matchPackageNames": ["stickerdaniel/linkedin-mcp-server"],
"matchManagers": ["docker-compose"],
"enabled": false
},
{
"description": "Group all CI dependencies (GitHub Actions + Docker)",
"matchManagers": ["github-actions", "dockerfile", "docker-compose"],
"matchPackageNames": ["!stickerdaniel/linkedin-mcp-server"],
"groupName": "CI dependencies"
},
{
"description": "Group all major updates together",
"matchUpdateTypes": ["major"],
"groupName": "all major dependencies"
},
{
"description": "Group MCP ecosystem packages",
"matchPackageNames": ["fastmcp", "mcp"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "MCP ecosystem"
},
{
"description": "Python runtime upgrades need manual validation",
"matchDatasources": ["docker"],
"matchPackageNames": ["python"],
"matchUpdateTypes": ["major", "minor"],
"enabled": false
},
{
"description": "requires-python: bump upper bound to next major.minor only",
"matchManagers": ["pep621"],
"matchDepTypes": ["requires-python"],
"rangeStrategy": "bump",
"extractVersion": "^(?<version>\\d+\\.\\d+)"
}
]
}