-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathrenovate.json
More file actions
120 lines (120 loc) · 3.22 KB
/
renovate.json
File metadata and controls
120 lines (120 loc) · 3.22 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices"],
"forkProcessing": "enabled",
"timezone": "America/Los_Angeles",
"prConcurrentLimit": 5,
"prCreation": "not-pending",
"ignoreDeps": ["@vscode/vsce"],
"packageRules": [
{
"description": "Group GitHub Actions updates for one review pass.",
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions"
},
{
"description": "Group AI SDK and provider patch/minor updates.",
"matchPackageNames": [
"ai",
"openai",
"ollama",
"tiktoken",
"@google/genai",
"@modelcontextprotocol/sdk",
"ai-sdk-provider-poe",
"sambanova-ai-provider",
"zhipu-ai-provider",
"/^@ai-sdk\\//",
"/^@anthropic-ai\\//",
"/^@aws-sdk\\//",
"/^@lmstudio\\//",
"/^@mistralai\\//",
"/^@openrouter\\//",
"/^@qdrant\\//"
],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "AI SDKs and providers"
},
{
"description": "Group frontend and UI patch/minor updates.",
"matchPackageNames": [
"next",
"react",
"react-dom",
"framer-motion",
"styled-components",
"lucide-react",
"tailwindcss",
"tailwind-merge",
"tailwindcss-animate",
"/^@radix-ui\\//",
"/^@tailwindcss\\//"
],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Frontend and UI stack"
},
{
"description": "Group test and build tooling patch/minor updates.",
"matchPackageNames": [
"vitest",
"vite",
"jsdom",
"nock",
"typescript",
"turbo",
"tsx",
"esbuild",
"eslint",
"prettier",
"knip",
"lint-staged",
"/^@testing-library\\//",
"/^@vitejs\\//",
"/^@vitest\\//",
"/^eslint($|-)/"
],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Build, lint, and test tooling"
},
{
"description": "Automerge low-risk patch updates for DefinitelyTyped packages.",
"matchPackageNames": ["/^@types\\//"],
"matchUpdateTypes": ["patch"],
"automerge": true
}
],
"customManagers": [
{
"customType": "regex",
"description": "Update Node.js version in the setup-node composite action.",
"managerFilePatterns": ["/^\\.github\\/actions\\/setup-node-pnpm\\/action\\.yml$/"],
"matchStrings": [
"node-version:\\n(?:[ \\t]+.*\\n){0,4}[ \\t]+default:\\s*\"(?<currentValue>\\d+\\.\\d+\\.\\d+)\""
],
"depNameTemplate": "node",
"datasourceTemplate": "node-version",
"versioningTemplate": "node"
},
{
"customType": "regex",
"description": "Update Node.js version in the evals setup script.",
"managerFilePatterns": ["/^packages\\/evals\\/scripts\\/setup\\.sh$/"],
"matchStrings": [
"node@(?<currentValue>\\d+\\.\\d+\\.\\d+)",
"node --version\\) != \\\"v(?<currentValue>\\d+\\.\\d+\\.\\d+)\\\""
],
"depNameTemplate": "node",
"datasourceTemplate": "node-version",
"versioningTemplate": "node"
},
{
"customType": "regex",
"description": "Update Node.js version in the evals runner Dockerfile.",
"managerFilePatterns": ["/^packages\\/evals\\/Dockerfile\\.runner$/"],
"matchStrings": ["ARG NODE_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "node",
"datasourceTemplate": "node-version",
"versioningTemplate": "node"
}
]
}