We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19626a4 commit c060274Copy full SHA for c060274
release.config.js
@@ -1,6 +1,6 @@
1
module.exports = {
2
debug: true,
3
- branches: 'release',
+ branches: 'master',
4
verifyConditions: [
5
'@semantic-release/changelog',
6
'@semantic-release/github',
@@ -17,5 +17,13 @@ module.exports = {
17
],
18
success: [
19
'@semantic-release/github'
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
29
}
0 commit comments