We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95ef48c commit b5067a4Copy full SHA for b5067a4
release.config.js
@@ -12,7 +12,7 @@ const commitPartial = defaultCommitPartial + customCommitPartial
12
function finalizeContext (context) {
13
for (const commitGroup of context.commitGroups) {
14
for (const commit of commitGroup.commits) {
15
- commit.bodyLines = commit.body.split('\n').filter((line) => line !== '')
+ commit.bodyLines = commit.body?.split('\n').filter((line) => line !== '') ?? []
16
}
17
18
0 commit comments