ci: use <sup> in release notes generator (#48698)

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Erick Zhao <erick@hotmail.ca>
This commit is contained in:
trop[bot]
2025-10-28 10:56:59 -04:00
committed by GitHub
parent c1eb83c659
commit e308928159

View File

@@ -684,7 +684,7 @@ function renderTrops (commit: Commit, excludeBranch: string) {
.map(([branch, key]) => renderTrop(branch, key))
.join(', ');
return body
? `<span style="font-size:small;">(Also in ${body})</span>`
? `<sup>(Also in ${body})</sup>`
: body;
}