branch: elpa/crux commit 2a1a39a2a27bb2b1ad70d11d5b13b6dab2ebd88d Author: Bozhidar Batsov <bozhi...@batsov.com> Commit: Bozhidar Batsov <bozhi...@batsov.com>
Add a few GitHub templates --- .github/FUNDING.yml | 5 +++++ .github/ISSUE_TEMPLATE.md | 33 +++++++++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 14 ++++++++++++++ 3 files changed, 52 insertions(+) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..7c87286 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,5 @@ +# These are supported funding model platforms + +github: bbatsov +patreon: bbatsov +custom: https://www.paypal.me/bbatsov diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..8cd014f --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,33 @@ +*Use the template below when reporting bugs. Please, make sure that +you're running the latest stable crux and that the problem you're reporting +hasn't been reported (and potentially fixed) already.* + +**Remove all of the placeholder text in your final report!** + +## Expected behavior + +## Actual behavior + +## Steps to reproduce the problem + +*This is extremely important! Providing us with a reliable way to reproduce +a problem will expedite its solution.* + +## Environment & Version information + +### crux version information + +*Include here the version string displayed by `M-x +crux-version`. Here's an example:* + +``` +crux version: 0.1 +``` + +### Emacs version + +*E.g. 24.5* (use <kbd>C-h C-a</kbd> to see it) + +### Operating system + +*E.g. Windows 10* diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..0f37643 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,14 @@ +**Replace this placeholder text with a summary of the changes in your PR. +The more detailed you are, the better.** + +----------------- + +Before submitting a PR make sure the following things have been done (and denote this +by checking the relevant checkboxes): + +- [ ] The commits are consistent with our [contribution guidelines](../blob/master/CONTRIBUTING.md) +- [ ] The new code is not generating bytecode or `M-x checkdoc` warnings +- [ ] You've updated the [changelog](../blob/master/CHANGELOG.md) (if adding/changing user-visible functionality) +- [ ] You've updated the readme (if adding/changing user-visible functionality) + +Thanks!