From 971490084e5ab994fb6b1e651044ad1f5afa4169 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Sun, 30 Mar 2025 12:14:13 +0200 Subject: [PATCH] Use a simpler GitHub pull request template (#36203) The idea here is that we can use the pull request description as the commit message, so that the git history is cleaner. This requires: 1. Removing comments from the message, as GitHub doesn't remove them from the pull request descriptions when committing. 2. Remove the checklist, which is now verified by the CI instead, so is less important. 3. Ask the contributor to remove the lines expicitly. Signed-off-by: Martin Robinson --- PULL_REQUEST_TEMPLATE.md | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md index 611ce0909c8..9e531904581 100644 --- a/PULL_REQUEST_TEMPLATE.md +++ b/PULL_REQUEST_TEMPLATE.md @@ -1,16 +1,4 @@ - +*Describe the changes that this pull request makes here. This will be the commit message.* - ---- - -- [ ] `./mach build -d` does not report any errors -- [ ] `./mach test-tidy` does not report any errors -- [ ] These changes fix #___ (GitHub issue number if applicable) - - -- [ ] There are tests for these changes OR -- [ ] These changes do not require tests because ___ - - - - +Testing: *Describe how this pull request is tested or why it doesn't require tests* +Fixes: *Link to an issue this pull requests fixes or remove this line if there is no issue*