forked from sanity-io/sanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
21 lines (21 loc) · 857 Bytes
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>sanity-io/renovate-config", ":dependencyDashboardApproval"],
"ignorePresets": ["github>sanity-io/renovate-config:group-non-major"],
"packageRules": [
{
"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)"],
"groupSlug": "dev"
},
{
"matchDepTypes": ["dependencies"],
"matchPackageNames": ["get-it", "@sanity/client"],
"rangeStrategy": "bump",
"semanticCommitType": "fix"
}
],
"ignorePaths": ["packages/@sanity/cli/test/__fixtures__/v2/package.json"],
"rebaseWhen": "behind-base-branch"
}