Skip to content

Commit 80ac8e8

Browse files
authored
fix: add dash for unordered list (#126)
1 parent 5b36ca7 commit 80ac8e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.changeset/changelog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const getReleaseLine = (changeset, _type) => {
2222
const { commit, summary } = changeset;
2323
const [firstLine, ...futureLines] = summary.split("\n").map((l) => l.trimRight());
2424

25-
return `${firstLine} (${getGithubCommitWithLink(commit)})${
25+
return `- ${firstLine} (${getGithubCommitWithLink(commit)})${
2626
futureLines.length > 0 ? futureLines.map((l) => ` ${l}`).join("\n") : ""
2727
}`;
2828
};

0 commit comments

Comments
 (0)