From 64d463fbe9acabd3c946a31bb7ccff4691a38a59 Mon Sep 17 00:00:00 2001 From: Andrew Janke Date: Wed, 20 Apr 2016 01:24:49 -0400 Subject: [PATCH] PR template: do install before audit This new order matches the order in the test-bot process, and allows audit to catch issues with file installation locations, which require the formula to be installed. Closes #476. Signed-off-by: Andrew Janke --- .github/PULL_REQUEST_TEMPLATE.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0743f60ca04..cba7c254d22 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,6 @@ - [ ] Have you followed the guidelines in our [Contributing](https://github.com/Homebrew/homebrew-core/blob/master/.github/CONTRIBUTING.md) document? - [ ] Have you checked to ensure there aren't other open [Pull Requests](https://github.com/Homebrew/homebrew-core/pulls) for the same formula update/change? -- [ ] Does your submission pass `brew audit --strict --online ` (where `` is the name of the formula you're submitting)? -- [ ] Have you built your formula locally prior to submission with `brew install `? +- [ ] Have you built your formula locally prior to submission with `brew install ` (where `` is the name of the formula you're submitting)? +- [ ] Does your submission pass `brew audit --strict --online ` (after doing `brew install `)? + +### Description