commit-analyzer icon indicating copy to clipboard operation
commit-analyzer copied to clipboard

:bulb: semantic-release plugin to analyze commits with conventional-changelog

Results 66 commit-analyzer issues
Sort by recently updated
recently updated
newest added

Fixes https://github.com/semantic-release/commit-analyzer/issues/231

It's possible there isn't a reasonable way to avoid this, but I recently encountered an issue where a commit message triggered a unexpected major release for me. ```diff diff --git...

I'm using the following config: ```js module.exports = { branches: ['master', 'test_commit'], repositoryUrl: 'ssh://git@*********', plugins: [ [ '@semantic-release/commit-analyzer', { preset: 'conventionalcommits' } ], '@semantic-release/release-notes-generator', '@semantic-release/changelog', '@semantic-release/npm', [ '@semantic-release/git', { message:...

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 following scenario is not working properly **Version** `[email protected]` **Config** ```js //.releaserc.mjs const config = { branches: ['main'], preset: 'conventionalcommits', plugins: [ [ '@semantic-release/commit-analyzer', { releaseRules: [ { type: 'docs',...

Upon calling @semantic-release/commit-analyzer base on the config in my `.releaserc.js`, in the bitbucket pipeline nothing is showing, there're commit to be analyzed but the plugin just say starting, but there's...