From 2930be5c593e4df2c878d0b05ac6a0867c11cea0 Mon Sep 17 00:00:00 2001 From: Geoff Kimball Date: Fri, 25 Aug 2017 09:54:05 -0700 Subject: [PATCH] Add issue template and pull request template --- .github/ISSUE_TEMPLATE.md | 5 +++++ .github/PULL_REQUEST_TEMPLATE.md | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..7190980 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,5 @@ +**Note:** if you have a question about how to use Handlebars, we recommend asking it on [Stack Overflow](https://stackoverflow.com/questions/tagged/handlebars.js). The Panini issue tracker is for reporting bugs (and requesting features) related to using Panini specifically. + +If you're encountering an error while using Panini, please paste in the error message, and if possible, the code for the page that isn't working. It's super helpful. + +Lastly, thanks for contributing to the project! :) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..15a2ad7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,3 @@ +Thanks for contributing to Panini! If you're adding a new feature, it can be helpful to open a new issue first, so the feature can be discussed before we commit to it. + +Before submitting your pull request, make sure all the existing unit tests pass. You can run the tests with the `npm test` command. If you're adding a new feature to Panini, please also add new unit tests for the feature.