File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,10 +4,20 @@ plugins:
44 - - "@semantic-release/commit-analyzer"
55 - preset : simple-preset
66 releaseRules : conventional-changelog-simple-preset/release-rules
7+ # Override the preset's `revertPattern: false`, which makes
8+ # conventional-commits-parser emit an empty `revert: {}` on some commit
9+ # bodies. conventional-commits-filter then treats that empty object as a
10+ # match against every commit (lodash isMatch(commit, {}) === true) and
11+ # drops the entire commit set, so no release is ever cut. `null` restores
12+ # normal revert detection.
13+ parserOpts :
14+ revertPattern : null
715 - - "@semantic-release/changelog"
816 - changelogFile : CHANGELOG.md
917 - - "@semantic-release/release-notes-generator"
1018 - preset : simple-preset
19+ parserOpts :
20+ revertPattern : null
1121 - - "@semantic-release/exec"
1222 - prepareCmd : ' export nextReleaseNotes="${nextRelease.notes}" && node bin/update-changelog.js'
1323 - - "@semantic-release/exec"
You can’t perform that action at this time.
0 commit comments