Skip to content

Commit c060274

Browse files
authored
chore: add patch for deps bot PRs
1 parent 19626a4 commit c060274

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

release.config.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
debug: true,
3-
branches: 'release',
3+
branches: 'master',
44
verifyConditions: [
55
'@semantic-release/changelog',
66
'@semantic-release/github',
@@ -17,5 +17,13 @@ module.exports = {
1717
],
1818
success: [
1919
'@semantic-release/github'
20-
]
20+
],
21+
releaseRules: [
22+
{ breaking: true, release: 'major' },
23+
{ revert: true, release: 'patch' },
24+
{ type: 'feat', release: 'minor' },
25+
{ type: 'fix', release: 'patch' },
26+
{ type: 'perf', release: 'patch' },
27+
{ type: 'chore', release: 'patch' }
28+
],
2129
}

0 commit comments

Comments
 (0)