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

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:18 -04:00 committed by GitHub
commit 487e36d22c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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