ci(release): simplify semantic-release config #529
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
releaseCommitMessageFormat
property is useless in the context of the@semantic-release/release-notes-generator
plugin. The role of the plugin is to generate release notes only. More concretely speaking, we can see the plugin's behavior as generating and storing a value in a variable which will then be reusable by the other plugins later. No commit will be created nor pushed. That's the role of the pluginsemantic-release-github-pullrequest
(https://github.com/asbiin/semantic-release-github-pullrequest) which will create a PR for the changes made to theCONTRIBUTING.md
file by the plugin@semantic-release/changelog
(https://github.com/semantic-release/changelog).The README file of the plugin can be found here: https://github.com/semantic-release/release-notes-generator. The specific documentation regarding the
releaseCommitMessageFormat
property can be found here: https://github.com/conventional-changelog/conventional-changelog-config-spec/blob/master/versions/2.0.0/README.md#releasecommitmessageformat-string. If new with thesemantic-release
tool, this documentation will be useful: https://semantic-release.gitbook.io/semantic-release/.