forked from stickerdaniel/linkedin-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
35 lines (35 loc) · 1.1 KB
/
renovate.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices", "group:allNonMajor"],
"schedule": ["before 6am on Monday"],
"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"
}
]
}