We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm trying to use semantic release using ember preset, but i cannot achieve to generate release notes with commit details.
My .releaserc config :
.releaserc
debug: false tagFormat: "${version}" preset: ember plugins: - - "@semantic-release/commit-analyzer" - - "@semantic-release/release-notes-generator" - - "@semantic-release/gitlab" - - "@semantic-release/changelog" - changelogFile: "CHANGELOG.md" - - "@semantic-release/exec" - prepareCmd: "bash bump.sh \"${lastRelease.version}\" \"${nextRelease.version}\" \"${nextRelease.type}\"" - - "@semantic-release/git" - message: "[BUMP] Increment version" assets: - README.md - current_version.txt - CHANGELOG.md branches: - "master"
I get CHANGELOG.md updated with only release references:
CHANGELOG.md
## [3.1.12](https://gitlab.com/xxxx/test-ci/compare/3.1.11...3.1.12) (2022-03-29) ## [3.1.11](https://gitlab.com/xxxx/test-ci/compare/3.1.10...3.1.11) (2022-03-29) [...]
Using default commit format and preset, I get details about commits in CHANGELOG.md:
## [3.1.10](https://gitlab.com/xxxxx/test-ci/compare/3.1.9...3.1.10) (2022-03-29) ### Bug Fixes * **test:** test 22 ([53d65be](https://gitlab.com/xxxxxx/test-ci/commit/53d65be733b1d1c45d4e407222af19096c5055e9))
Any idea how i could achieve commit listing in changelog using ember preset ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I'm trying to use semantic release using ember preset, but i cannot achieve to generate release notes with commit details.
My
.releaserc
config :I get
CHANGELOG.md
updated with only release references:Using default commit format and preset, I get details about commits in
CHANGELOG.md
:Any idea how i could achieve commit listing in changelog using ember preset ?
The text was updated successfully, but these errors were encountered: