commit-analyzer
commit-analyzer copied to clipboard
always make a release even if the commit type is not any of the pre-defined one
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 does my "releaseRules" supposed to look like?
I would also be really interested in this feature, if it's possible.
I can't work this out either - we aren't using conventional commits currently but could in the future. In the meantime I'd like to set up our pipeline so we are ready.
Just worked it out:
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [{ "release": "patch" }]
}
]