-
Notifications
You must be signed in to change notification settings - Fork 430
/
renovate.json
50 lines (50 loc) · 1.86 KB
/
renovate.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>sanity-io/renovate-config",
"github>sanity-io/renovate-config:studio-v3",
":dependencyDashboardApproval"
],
"ignorePresets": ["github>sanity-io/renovate-config:group-non-major"],
"packageRules": [
{
"description": "Enable automerge with GitHub merge queues (note that this doesn't bypass required checks and code reviews)",
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"description": "Slate upgrades are handled manually as they require extensive manual testing to verify it's safe to upgrade",
"matchPackageNames": ["slate", "slate-react"],
"enabled": false
},
{
"description": "Dependency updates to examples and the root should always use the chore scope as they aren't published to npm",
"matchFileNames": ["package.json", "dev/**/package.json", "examples/**/package.json"],
"extends": [":semanticCommitTypeAll(chore)"]
},
{
"description": "Group minor and patch deps in dev to a single PR",
"matchFileNames": ["dev/**/package.json"],
"extends": ["github>sanity-io/renovate-config:group-non-major"]
},
{
"description": "Pin Presentation in Test Studio to the version that has the agressive focus path behavior that makes race conditions easier to debug",
"matchFileNames": ["dev/test-studio/package.json"],
"matchDepNames": ["@sanity/presentation"],
"allowedVersions": "<=1.11.4"
},
{
"matchDepTypes": ["dependencies"],
"matchPackageNames": [
"get-it",
"@sanity/client",
"@sanity/presentation",
"@sanity/ui",
"groq-js"
],
"rangeStrategy": "bump",
"semanticCommitType": "fix"
}
],
"ignorePaths": ["packages/@sanity/cli/test/__fixtures__/v2/package.json"]
}