Date: Fri, 14 Nov 2025 21:36:47 GMT From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 73a4459f6fc7 - main - GitHub: Enclose list of commit hashes in parens Message-ID: <202511142136.5AELalPP047123@gitrepo.freebsd.org>
index | next in thread | raw e-mail
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({home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202511142136.5AELalPP047123>
