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

Is it possible to give custom type in the configuration?

Open LakshmiRavali opened this issue 3 years ago • 1 comments

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" }, { "type": "test-feat", "release": "minor" }] } ] Is there any way to do like above? For example: test-fix: Testing semantic commit analyzer , this commit should trigger the patch release.

LakshmiRavali avatar Sep 29 '21 07:09 LakshmiRavali

I am stumbling through the customization phase of getting used to this project myself, but an example I am looking at that is helping a lot is this guys: https://github.com/ahmadnassri/node-api-problem/blob/master/.semantic.json

Carus11 avatar Oct 14 '21 07:10 Carus11