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 need to make sure that whatever commit message is there won't be a MAJOR release.
Currently with default angular preset all that is needed is BREAKING CHANGE: in the commit message footer to trigger a MAJOR release.
angular
BREAKING CHANGE:
For now I just associate breaking changes with a minor release which is fine for our use case and it results in just a MINOR version upgrade.
plugins: [ [ "@semantic-release/commit-analyzer", { releaseRules: [{ breaking: true, release: "minor" }] }, ], ],
Question - is there a more correct solution ?
Thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello!
I need to make sure that whatever commit message is there won't be a MAJOR release.
Currently with default
angular
preset all that is needed isBREAKING CHANGE:
in the commit message footer to trigger a MAJOR release.For now I just associate breaking changes with a minor release which is fine for our use case and it results in just a MINOR version upgrade.
Question - is there a more correct solution ?
Thank you
The text was updated successfully, but these errors were encountered: