From 34a12d8e0de4917f4dd9ad395ca320c00ba3c7a5 Mon Sep 17 00:00:00 2001 From: snowman2 Date: Wed, 8 Jan 2020 19:50:56 -0600 Subject: added issue & pull request templates --- .github/ISSUE_TEMPLATE/bug_report.md | 31 +++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 7 +++++++ .github/ISSUE_TEMPLATE/question.md | 9 +++++++++ .github/PULL_REQUEST_TEMPLATE.md | 5 +++++ 4 files changed, 52 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/question.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..805aac1e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve +labels: bug +--- + + + + +#### Code Sample, a copy-pastable example if possible + +A "Minimal, Complete and Verifiable Example" will make it much easier for maintainers to help you: +http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports + +```c +# Your code here + +``` +#### Problem description + +[this should explain **why** the current behavior is a problem and why the expected output is a better solution.] + +#### Expected Output + + +#### Environment Information + - PROJ version (`proj`) + - Operation System Information (`python -c "import platform; print(platform.platform())"`) + +#### Installation method + - conda, apt-get, from source, etc... diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..097da51e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,7 @@ +--- +name: Feature request +about: Suggest an idea for this project +labels: proposal +--- + + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 00000000..cee701d0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,9 @@ +--- +name: Question +about: Additional places to ask questions are on the PROJ mailing list (https://lists.osgeo.org/mailman/listinfo/proj) or GIS Stack Exchange (https://gis.stackexchange.com/questions/tagged/proj). +labels: question +--- + + \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..20efa59e --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,5 @@ + + + - [ ] Closes #xxxx + - [ ] Tests added + - [ ] Fully documented, including `NEWS`, `docs/source/news.rst` for all changes and `docs/source/*.rst` for new API \ No newline at end of file -- cgit v1.2.3