From bb57daab1a09fcb661f653c55381ed5a1e494cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Norte?= Date: Sat, 8 Apr 2017 00:13:25 +0200 Subject: [PATCH] Adding templates for issues and pull requests --- .github/ISSUE_TEMPLATE.md | 25 +++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 13 +++++++++++++ 2 files changed, 38 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..a1d9da4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,25 @@ + + +#### Instructions + +Please read and follow this instructions before submitting an issue: + +- Ensure your issue isn't already [reported](https://github.com/mzabriskie/axios/issues?utf8=%E2%9C%93&q=is%3Aissue). +- If you aren't sure that the issue is caused by axios or you just need for help, please use [Stack Overflow](https://stackoverflow.com/questions/tagged/axios) or [our chat](https://gitter.im/mzabriskie/axios). +- If you're reporting a bug, ensure it isn't already fixed in the latest axios version. +- If you need a new feature there's a chance it's already implemented in a [library](https://github.com/mzabriskie/axios/blob/master/ECOSYSTEM.md) or you can implement it using [interceptors](https://github.com/mzabriskie/axios#interceptors). + +*^^^ Delete the instructions before submitting the issue ^^^* + +#### Summary + +Describe your issue here, including as much detail as necessary. + +If you're reporting a bug, include the relevant code and stack traces to debug it (removing any private information). + +If you're requesting a feature, include some context and examples of code using it. + +#### Context + +- axios version: *e.g.: v0.16.0* +- Environment: *e.g.: node v6.9.4, chrome 54, windows 7* diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..363b739 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,13 @@ + + +#### Instructions + +Please read and follow this instructions before creating and submitting a pull request: + +- Create an issue explaining the feature. It could save you some effort in case we don't consider it should be included in axios. +- If you're fixing a bug, try to commit the failing test/s and the code fixing it in different commits. +- Ensure you're following our [contributing guide](https://github.com/mzabriskie/axios/blob/master/CONTRIBUTING.md). + +*^^^ Delete the instructions before submitting the pull request ^^^* + +Describe your pull request here.