mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
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
This commit is contained in:
parent
82d8a5029a
commit
73a4459f6f
1 changed files with 1 additions and 1 deletions
2
.github/workflows/checklist.yml
vendored
2
.github/workflows/checklist.yml
vendored
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue