-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathrenovate.json5
More file actions
52 lines (52 loc) · 1.46 KB
/
renovate.json5
File metadata and controls
52 lines (52 loc) · 1.46 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"group:monorepos",
":separateMajorReleases",
":semanticCommitTypeAll(chore)"
],
"schedule": ["before 7am on monday"],
"prConcurrentLimit": 5,
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/__tests__/**",
"**/test/**",
"**/tests/**",
"**/__fixtures__/**",
"demos/**",
"examples/**",
"devtools/visual-testing/**"
],
"ignoreDeps": [
"pdfjs-dist",
"@hocuspocus/provider",
// Bun 1.3.12+ regressed `bun build --compile` macOS signing (oven-sh/bun#29120, #29361),
// breaking the darwin-arm64 CLI binary shipped in the Python SDK wheel. Pinned to 1.3.11
// in workflows; do not let Renovate bump it without verifying macOS signing again.
// Tracked in SD-2784.
"bun",
],
"packageRules": [
{
"description": "Auto-merge dev dependency patches",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch"],
"automerge": true,
"groupName": "dev dependencies (patch)"
},
{
"description": "Don't touch vite - overridden with rolldown-vite",
"matchPackageNames": ["vite"],
"enabled": false
},
{
"description": "Use version tags for GitHub Actions, not pinned commit hashes",
"matchManagers": ["github-actions"],
"pinDigests": false
}
],
"platformAutomerge": true
}