aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon B2018-01-23 01:02:40 +0100
committerSimon B2018-01-23 01:02:40 +0100
commit480a25aef9ea5ae0e1a0e206b60522bc79003908 (patch)
tree63e8d4b9ee235661a3fd28dade93d9ef70b0c650
parentace2d569dcd3a45d0fc49a6742540b6f7a957fbc (diff)
downloadbrew-480a25aef9ea5ae0e1a0e206b60522bc79003908.tar.bz2
Add doctor and style to checklist.
Ensures that contributors know about `brew doctor` and `brew style` before submitting a PR, since CI fails on `brew style` breaches.
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 3061f42b6..a51bbb38d 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -2,6 +2,8 @@
- [ ] Have you checked to ensure there aren't other open [Pull Requests](https://github.com/Homebrew/brew/pulls) for the same change?
- [ ] Have you added an explanation of what your changes do and why you'd like us to include them?
- [ ] Have you written new tests for your changes? [Here's an example](https://github.com/Homebrew/homebrew/pull/49031).
+- [ ] Have you successfully run `brew style` with your changes locally?
+- [ ] Have you successfully run `brew doctor` with your changes locally?
- [ ] Have you successfully run `brew tests` with your changes locally?
-----