diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2025-07-16 14:55:28 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2025-11-14 21:36:22 +0000 |
| commit | 73a4459f6fc76482ea55c5aacb66136c49fb0892 (patch) | |
| tree | a47ae3ddc544f5e9ea0a79a30cf929a239258d71 | |
| parent | 82d8a5029a80a77166dca098b8fedb10d84e4e38 (diff) | |
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
| -rw-r--r-- | .github/workflows/checklist.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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({ |
