diff options
| author | snowman2 <alansnow21@gmail.com> | 2020-01-08 19:50:56 -0600 |
|---|---|---|
| committer | snowman2 <alansnow21@gmail.com> | 2020-01-08 19:52:22 -0600 |
| commit | 34a12d8e0de4917f4dd9ad395ca320c00ba3c7a5 (patch) | |
| tree | cb26572f9d78a070c1c60be252a610785d5a607d /.github | |
| parent | 2d76bcffdc4d154860512c904c877ad086ca6b6d (diff) | |
| download | PROJ-34a12d8e0de4917f4dd9ad395ca320c00ba3c7a5.tar.gz PROJ-34a12d8e0de4917f4dd9ad395ca320c00ba3c7a5.zip | |
added issue & pull request templates
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 31 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 7 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/question.md | 9 | ||||
| -rw-r--r-- | .github/PULL_REQUEST_TEMPLATE.md | 5 |
4 files changed, 52 insertions, 0 deletions
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 +--- + +<!-- Please search existing issues to avoid creating duplicates. --> + + +#### 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 +--- + +<!-- Describe the feature you'd like. -->
\ 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 +--- + +<!-- +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). +-->
\ 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 @@ +<!-- Feel free to remove check-list items aren't relevant to your change --> + + - [ ] 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 |
