You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if I don't want to have commiters in changelog, i can provide "ignoreCommitters": [""] as an option, but there is still Committers: 0 in changelog, which is a redundant line at that point.
I would suggest:
1. adding omitCommiters: boolean to options
2. or extend the following condition
if (release.contributors) {
markdown += `\n\n${this.renderContributorList(release.contributors)}`;
}
to
if (release.contributors?.length) {
markdown += `\n\n${this.renderContributorList(release.contributors)}`;
}
The text was updated successfully, but these errors were encountered:
if I don't want to have commiters in changelog, i can provide
"ignoreCommitters": [""]
as an option, but there is stillCommitters: 0
in changelog, which is a redundant line at that point.I would suggest:
1. adding
omitCommiters: boolean
to options2. or extend the following condition
to
The text was updated successfully, but these errors were encountered: