From 34ea8cbc9d0e45b8c30dc05792a3f3ddd82cef9e Mon Sep 17 00:00:00 2001 From: Issy Long Date: Fri, 18 Sep 2020 16:22:41 +0100 Subject: [PATCH] PULL_REQUEST_TEMPLATE: Add a checklist item for `brew man` - I've been changing command flags recently. I always forget to run `brew man`, then I feel bad about causing red CI on my PRs. This has happened to others too, so make `brew man` more obvious as a thing that one should check. --- .github/PULL_REQUEST_TEMPLATE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 14170c830c..951ba95ebc 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,5 +4,6 @@ - [ ] Have you written new tests for your changes? [Here's an example](https://github.com/Homebrew/brew/blob/HEAD/Library/Homebrew/test/PATH_spec.rb). - [ ] Have you successfully run `brew style` with your changes locally? - [ ] Have you successfully run `brew tests` with your changes locally? +- [ ] Have you successfully run `brew man` locally and committed any changes? -----