Tycho Bokdam
Tycho Bokdam
Hmm, then I think [`gitSemverTags`](https://github.com/TriPSs/conventional-changelog-action/blob/releases%2Fv3/src/version/git.js#L13) is maybe causing this issue. Not quite sure how we can tackle this. Is it possible that you share your whole workflow?
You could try one thing, but I don't think it will change anything: add: ``` env: ENV: 'dont-use-git' ``` This will make sure that the git helper will never do...
Maybe you can use the [config-file-path](https://github.com/TriPSs/conventional-changelog-action#config-file-path) option to define your own?
I do think the install/node part are needed as you use a custom preset: ``` const config = require('conventional-changelog-conventionalcommits'); module.exports = config({ ``` I did not build this feature but...
I think you should be able to make it work with the below config: ``` 'use strict' const config = require('conventional-changelog-conventionalcommits') const addBangNotes = require('conventional-changelog-conventionalcommits/add-bang-notes') const conventionalCommitsConfig = config({ 'types':...
Could you add some console logs? Like: ``` 'use strict' const config = require('conventional-changelog-conventionalcommits') const addBangNotes = require('conventional-changelog-conventionalcommits/add-bang-notes') const conventionalCommitsConfig = config({ 'types': [ { type: 'build', hidden: true },...
``` 'use strict' const config = require('conventional-changelog-conventionalcommits') const addBangNotes = require('conventional-changelog-conventionalcommits/add-bang-notes') module.exports = async () => { const conventionalCommitsConfig = await config({ 'types': [ { type: 'build', hidden: true },...
Hmm, looks like it just stops, could you try with skipping of empty releases disabled to see it will continue.
Hmm, I have the feeling we need to do something with the `Q` library, as the below code is handled in formatting the config: ``` 'use strict' const Q =...
Hi, I cannot see quite clearly why this should not work, if you run the pre commit locally does it also work correctly?