diff --git a/.github/ISSUE_TEMPLATE/BUG.md b/.github/ISSUE_TEMPLATE/BUG.md new file mode 100644 index 0000000..85d5990 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG.md @@ -0,0 +1,92 @@ +--- +name: Bug report +about: Report a problem with rest-server to help us resolve it and improve +--- + + + + + +Output of `rest-server --version` +--------------------------------- + + +How did you run rest-server exactly? +------------------------------------ + + + + +What backend/server/service did you use to store the repository? +---------------------------------------------------------------- + + +Expected behavior +----------------- + + + + +Actual behavior +--------------- + + + + +Steps to reproduce the behavior +------------------------------- + + + + +Do you have any idea what may have caused this? +----------------------------------------------- + + +Do you have an idea how to solve the issue? +------------------------------------------- + + +Did rest-server help you today? Did it make you happy in any way? +----------------------------------------------------------------- + + diff --git a/.github/ISSUE_TEMPLATE/FEATURE.md b/.github/ISSUE_TEMPLATE/FEATURE.md new file mode 100644 index 0000000..92f3dfc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE.md @@ -0,0 +1,58 @@ +--- +name: Feature request/enhancement +about: Suggest a new feature or enhancement for rest-server +--- + + + + + +Output of `rest-server --version` +--------------------------------- + + + + +What should rest-server do differently? +--------------------------------------- + + + + +What are you trying to do? What is your use case? +------------------------------------------------- + + + + +Did rest-server help you today? Did it make you happy in any way? +----------------------------------------------------------------- + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..0a23b31 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,39 @@ + + + +What is the purpose of this change? What does it change? +-------------------------------------------------------- + + + + +Was the change discussed in an issue or in the forum before? +------------------------------------------------------------ + + + + +Checklist +--------- + +- [ ] I have added tests for all changes in this PR +- [ ] I have added documentation for the changes (in the manual) +- [ ] There's a new file in `changelog/unreleased/` that describes the changes for our users (template [here](https://github.com/restic/rest-server/blob/master/changelog/TEMPLATE)) +- [ ] I have run `gofmt` on the code in all commits +- [ ] All commit messages are formatted in the same style as [the other commits in the repo](https://github.com/restic/rest-server/commits/master) +- [ ] I'm done, this Pull Request is ready for review