We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have conventionalcommits preset in out pipeline that generates the following changelog.
Here's the full set of config.
[ // produces the release notes that are consumed by the changelog // plugin and by the GitHub plugin (for GitHub releases) '@semantic-release/release-notes-generator', { preset: 'conventionalcommits', presetConfig: { types, }, writerOpts: { commitGroupsSort: (a, b) => { const commitGroupOrder = [ nameForType('revert'), nameForType('perf'), nameForType('fix'), nameForType('feat'), ]; const gRankA = commitGroupOrder.indexOf(a.title); const gRankB = commitGroupOrder.indexOf(b.title); if (gRankA >= gRankB) { return -1; } return 1; }, }, }, ]
Is there a way to change that to append the PR owner to each row of commit message?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We have conventionalcommits preset in out pipeline that generates the following changelog.
Here's the full set of config.
Is there a way to change that to append the PR owner to each row of commit message?
The text was updated successfully, but these errors were encountered: