Skip to content

Commit 4eea1de

Browse files
committed
Use fix commit type instead of deps
1 parent 6e23b35 commit 4eea1de

File tree

1 file changed

+7
-20
lines changed

1 file changed

+7
-20
lines changed

.github/renovate.json

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,33 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"globalExtends": [
4-
"config:base"
5-
],
3+
"globalExtends": ["config:base"],
64
"semanticCommits": "enabled",
75
"extends": ["group:allNonMajor", "schedule:monthly"],
86
"packageRules": [
97
{
108
"description": "Create a PR whenever there is a new major version",
11-
"matchUpdateTypes": [
12-
"major"
13-
]
9+
"matchUpdateTypes": ["major"]
1410
},
1511
{
1612
"description": "Use releasable commit type for runtime dependency updates",
17-
"matchManagers": [
18-
"npm"
19-
],
13+
"matchManagers": ["npm"],
2014
"matchDepTypes": [
2115
"dependencies",
2216
"optionalDependencies",
2317
"peerDependencies"
2418
],
25-
"semanticCommitType": "deps",
19+
"semanticCommitType": "fix",
2620
"semanticCommitScope": "deps"
2721
},
2822
{
2923
"description": "Keep development-only dependency updates non-releasable",
30-
"matchManagers": [
31-
"npm"
32-
],
33-
"matchDepTypes": [
34-
"devDependencies"
35-
],
24+
"matchManagers": ["npm"],
25+
"matchDepTypes": ["devDependencies"],
3626
"semanticCommitType": "chore",
3727
"semanticCommitScope": "deps"
3828
}
3929
],
40-
"ignorePaths": [
41-
"docs/**",
42-
"experimental/**"
43-
],
30+
"ignorePaths": ["docs/**", "experimental/**"],
4431
"pinVersions": false,
4532
"ignoreDeps": ["typescript"]
4633
}

0 commit comments

Comments
 (0)