-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathrenovate.json
More file actions
45 lines (45 loc) · 1.61 KB
/
renovate.json
File metadata and controls
45 lines (45 loc) · 1.61 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"ignorePaths": [
"evals/**/answer/**"
],
"automerge": false,
"packageRules": [
{
"description": "Group all @ai-sdk/* packages so they update together",
"matchPackagePrefixes": ["@ai-sdk/"],
"groupName": "AI SDK packages"
},
{
"description": "Group convex-related packages",
"matchPackageNames": ["convex", "convex-test", "@convex-dev/migrations"],
"groupName": "Convex packages",
"labels": ["dependencies", "convex"]
},
{
"description": "Disable major version updates for GitHub Actions - current v4 setup works, avoid disruptive jumps",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Disable major version updates for core runner dependencies - breaking changes in these can silently break model integrations",
"matchPackageNames": ["ai", "convex"],
"matchPackagePrefixes": ["@ai-sdk/"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Disable eslint major updates - typescript-eslint v8 only supports eslint v8/v9, re-enable when typescript-eslint drops v10 support",
"matchPackageNames": ["eslint", "@eslint/js", "@eslint/eslintrc"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Ignore rymndhng/release-on-push-action - pinned to @master intentionally",
"matchPackageNames": ["rymndhng/release-on-push-action"],
"enabled": false
}
]
}