From 0de177d207420bb2be113eeadd5d1d0aa7526465 Mon Sep 17 00:00:00 2001 From: Damon Kohler Date: Fri, 10 Nov 2017 16:29:38 +0100 Subject: [PATCH] Adds PR template text. (#609) --- .github/PULL_REQUEST_TEMPLATE.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..0887020 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +Want to contribute? Great! Make sure you've checked all these boxes before creating your PR: + +- [ ] Keep your PR rebased to master. +- [ ] Keep your PR under 200 lines of code and address a single concern. +- [ ] Add unit test(s) and documentation (these do not count toward your 200 lines). +- [ ] Adhere to the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html). +- [ ] Run `clang-format -style=Google` on your code (this alone is not enough to ensure you've followed the style guide). +- [ ] Run `ninja test` or `catkin_make_isolated --install --use-ninja --pkg cartographer --make-args test` as appropriate.