From 73a4459f6fc76482ea55c5aacb66136c49fb0892 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Wed, 16 Jul 2025 10:55:28 -0400 Subject: [PATCH] GitHub: Enclose list of commit hashes in parens Rather than superscript , 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 ecc3939f34b..44b264e9c03 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 + "" + checklist[c].join(", ") + "\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({