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

Since every commit being analyzed is logged (with the description as well as the commit message) we sometimes ned up with thousands of lines of logs in our GH Actions...

is there a way to always make a release type of "`patch`" if the commit type doesn't fall into any of the predefined options like "`feat:`" or "`fix:`" ? how...

We maintain a custom conventional changelog [link](https://github.com/tophat/commit-utils/tree/master/packages/conventional-changelog-config) that we would like to use with semantic-release, but any time we've tried this, any time we merge a PR it's treated as...

This allows using a catchall to release any commits that don't match a rule. This is very useful for shared configurations when you are trying to migrate to semantic-release. With...

The below release rules works well, until the commit message has a '/' in it. `For ex BUGFIX-RELEASE: wait to set up event emitter until calling /process` Here are the...

## Feature request I'd like the option to be able to pass in a directory path or glob to filter commits by. For example, if I pass in `./src/`, it...

Part of our efforts to migrate `semantic-release` to native ES Modules: https://github.com/semantic-release/semantic-release/issues/2133

Let's say I have a commit which look like that: `fix: this is an example` Commit-analyzer is detecting this commit and triggers a patch version - which is the expected...

I want to analyze some custom-type commits also. Something like below: ` [ "@semantic-release/commit-analyzer", { "preset": "angular", "releaseRules": [{ "type": "chore", "release": "patch" }, { "type": "test-fix", "release": "patch" },...

is there a way to use custom commit types? Ex: `dep-add(npm): :heavy_plus_sign: add cz-emoji npm package` `config(semantic-release): :wrench: add @semantic-release/analyze-commits plugin` dep-add(npm): :heavy_plus_sign: add cz-emoji npm package config(semantic-release): :wrench: add...