From f38ac6f27ace386d7e1d18cda6ffb8af5b20b598 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 15 Jul 2025 14:12:50 -0400 Subject: [PATCH] GitHub: Provide more context in pull request issue comment Be explicit that the user should update their branch and re-push to update the pull request. Reviewed by: imp Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D51332 --- .github/workflows/checklist.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml index f5c3ea599ab..7f7b0d51f46 100644 --- a/.github/workflows/checklist.yml +++ b/.github/workflows/checklist.yml @@ -89,6 +89,7 @@ jobs: /* Loop for each key in "checklist". */ for (const c in checklist) msg += "- " + c + "" + checklist[c].join(", ") + "\n"; + msg += "\nPlease review CONTRIBUTING.md, then update and push your branch again.\n" comment_func({ owner: context.repo.owner,