|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": ["config:recommended"], |
| 3 | + "extends": ["config:best-practices"], |
4 | 4 | "forkProcessing": "enabled", |
5 | | - "ignoreDeps": ["@vscode/vsce"] |
| 5 | + "timezone": "America/Los_Angeles", |
| 6 | + "prConcurrentLimit": 5, |
| 7 | + "prCreation": "not-pending", |
| 8 | + "ignoreDeps": ["@vscode/vsce"], |
| 9 | + "packageRules": [ |
| 10 | + { |
| 11 | + "description": "Group GitHub Actions updates for one review pass.", |
| 12 | + "matchManagers": ["github-actions"], |
| 13 | + "groupName": "GitHub Actions", |
| 14 | + "schedule": ["* 21-23 * * 0"] |
| 15 | + }, |
| 16 | + { |
| 17 | + "description": "Group AI SDK and provider patch/minor updates.", |
| 18 | + "matchPackageNames": [ |
| 19 | + "ai", |
| 20 | + "openai", |
| 21 | + "ollama", |
| 22 | + "tiktoken", |
| 23 | + "@google/genai", |
| 24 | + "@modelcontextprotocol/sdk", |
| 25 | + "ai-sdk-provider-poe", |
| 26 | + "sambanova-ai-provider", |
| 27 | + "zhipu-ai-provider", |
| 28 | + "/^@ai-sdk\\//", |
| 29 | + "/^@anthropic-ai\\//", |
| 30 | + "/^@aws-sdk\\//", |
| 31 | + "/^@lmstudio\\//", |
| 32 | + "/^@mistralai\\//", |
| 33 | + "/^@openrouter\\//", |
| 34 | + "/^@qdrant\\//" |
| 35 | + ], |
| 36 | + "matchUpdateTypes": ["minor", "patch"], |
| 37 | + "groupName": "AI SDKs and providers", |
| 38 | + "schedule": ["* 21-23 * * 0"] |
| 39 | + }, |
| 40 | + { |
| 41 | + "description": "Group frontend and UI patch/minor updates.", |
| 42 | + "matchPackageNames": [ |
| 43 | + "next", |
| 44 | + "react", |
| 45 | + "react-dom", |
| 46 | + "framer-motion", |
| 47 | + "styled-components", |
| 48 | + "lucide-react", |
| 49 | + "tailwindcss", |
| 50 | + "tailwind-merge", |
| 51 | + "tailwindcss-animate", |
| 52 | + "/^@radix-ui\\//", |
| 53 | + "/^@tailwindcss\\//" |
| 54 | + ], |
| 55 | + "matchUpdateTypes": ["minor", "patch"], |
| 56 | + "groupName": "Frontend and UI stack", |
| 57 | + "schedule": ["* 21-23 * * 0"] |
| 58 | + }, |
| 59 | + { |
| 60 | + "description": "Group test and build tooling patch/minor updates.", |
| 61 | + "matchPackageNames": [ |
| 62 | + "vitest", |
| 63 | + "vite", |
| 64 | + "jsdom", |
| 65 | + "nock", |
| 66 | + "typescript", |
| 67 | + "turbo", |
| 68 | + "tsx", |
| 69 | + "esbuild", |
| 70 | + "eslint", |
| 71 | + "prettier", |
| 72 | + "knip", |
| 73 | + "lint-staged", |
| 74 | + "/^@testing-library\\//", |
| 75 | + "/^@vitejs\\//", |
| 76 | + "/^@vitest\\//", |
| 77 | + "/^eslint($|-)/" |
| 78 | + ], |
| 79 | + "matchUpdateTypes": ["minor", "patch"], |
| 80 | + "groupName": "Build, lint, and test tooling", |
| 81 | + "schedule": ["* 21-23 * * 0"] |
| 82 | + }, |
| 83 | + { |
| 84 | + "description": "Automerge low-risk patch updates for DefinitelyTyped packages.", |
| 85 | + "matchPackageNames": ["/^@types\\//"], |
| 86 | + "matchUpdateTypes": ["patch"], |
| 87 | + "automerge": true |
| 88 | + } |
| 89 | + ], |
| 90 | + "customManagers": [ |
| 91 | + { |
| 92 | + "customType": "regex", |
| 93 | + "description": "Update Node.js version in the setup-node composite action.", |
| 94 | + "managerFilePatterns": ["/^\\.github\\/actions\\/setup-node-pnpm\\/action\\.yml$/"], |
| 95 | + "matchStrings": [ |
| 96 | + "node-version:\\n(?:[ \\t]+.*\\n){0,4}[ \\t]+default:\\s*\"(?<currentValue>\\d+\\.\\d+\\.\\d+)\"" |
| 97 | + ], |
| 98 | + "depNameTemplate": "node", |
| 99 | + "datasourceTemplate": "node-version", |
| 100 | + "versioningTemplate": "node" |
| 101 | + }, |
| 102 | + { |
| 103 | + "customType": "regex", |
| 104 | + "description": "Update Node.js version in the evals setup script.", |
| 105 | + "managerFilePatterns": ["/^packages\\/evals\\/scripts\\/setup\\.sh$/"], |
| 106 | + "matchStrings": [ |
| 107 | + "node@(?<currentValue>\\d+\\.\\d+\\.\\d+)", |
| 108 | + "node --version\\) != \\\"v(?<currentValue>\\d+\\.\\d+\\.\\d+)\\\"" |
| 109 | + ], |
| 110 | + "depNameTemplate": "node", |
| 111 | + "datasourceTemplate": "node-version", |
| 112 | + "versioningTemplate": "node" |
| 113 | + }, |
| 114 | + { |
| 115 | + "customType": "regex", |
| 116 | + "description": "Update Node.js version in the evals runner Dockerfile.", |
| 117 | + "managerFilePatterns": ["/^packages\\/evals\\/Dockerfile\\.runner$/"], |
| 118 | + "matchStrings": ["ARG NODE_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"], |
| 119 | + "depNameTemplate": "node", |
| 120 | + "datasourceTemplate": "node-version", |
| 121 | + "versioningTemplate": "node" |
| 122 | + } |
| 123 | + ] |
6 | 124 | } |
0 commit comments