From 30b878f3dacace442ba6bd8d7c77c2154be7a1b2 Mon Sep 17 00:00:00 2001 From: Adam Hill Date: Mon, 16 Oct 2017 15:25:40 -0500 Subject: [PATCH] Create CONTRIBUTING.md --- CONTRIBUTING.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..bf39b27 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,10 @@ +# Pull Request Guidelines + +Please review the following before opening a pull request (PR) to help your PR go smoothly: + +* Code changes go to the `dev` branch first + * To ensure proper testing and quality control, target any code change pull requests against `dev` branch. + +* Make sure the tests pass + * Take a look at [TESTING.md](TESTING.md) to see how to run tests locally so you do not have to push all your code to a PR and have travis-ci run it. + * Your tests will probably run faster locally and you get a faster feedback loop.