git: 73a4459f6fc7 - main - GitHub: Enclose list of commit hashes in parens
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 14 Nov 2025 21:36:47 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=73a4459f6fc76482ea55c5aacb66136c49fb0892
commit 73a4459f6fc76482ea55c5aacb66136c49fb0892
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-07-16 14:55:28 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-11-14 21:36:22 +0000
GitHub: Enclose list of commit hashes in parens
Rather than superscript <sup>, for a nicer looking list.
Reviewed by: vexeduxr
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D53000
---
.github/workflows/checklist.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml
index ecc3939f34b8..44b264e9c031 100644
--- a/.github/workflows/checklist.yml
+++ b/.github/workflows/checklist.yml
@@ -88,7 +88,7 @@ jobs:
/* Loop for each key in "checklist". */
for (const c in checklist)
- msg += "- " + c + "<sup>" + checklist[c].join(", ") + "</sup>\n";
+ msg += "- " + c + " (" + checklist[c].join(", ") + ")\n";
msg += "\nPlease review [CONTRIBUTING.md](https://github.com/freebsd/freebsd-src/blob/main/CONTRIBUTING.md), then update and push your branch again.\n"
comment_func({