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

This commit is contained in:
Erick Zhao
2025-10-28 01:06:23 -07:00
committed by GitHub
parent 7fecc66e12
commit 297319f931

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;
}