diff options
| author | Federico Caselli <CaselIT@users.noreply.github.com> | 2020-04-23 20:58:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-23 20:58:30 +0200 |
| commit | c1596fbc26fc1794531afeacd5d41b21c591c499 (patch) | |
| tree | d05bbcc561c3b4411740c4fe7430bdeefc8cd13e /.github | |
| parent | 763d733e9418314e874448f6b461b5c6b94aaf0f (diff) | |
| download | sqlalchemy-c1596fbc26fc1794531afeacd5d41b21c591c499.tar.gz | |
Update issue templates
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 40 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 22 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/question.md | 25 |
3 files changed, 87 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..8e2f8f63c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,40 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +<!-- A clear and concise description of what the bug is. --> + +**Expected behavior** +<!-- A clear and concise description of what you expected to happen. --> + +**To Reproduce** +Please provide a [Minimal, Complete, and Verifiable](http://stackoverflow.com/help/mcve) example. +See also [Reporting Bugs](https://www.sqlalchemy.org/participate.html#bugs) on the website, and some [example issues](https://github.com/sqlalchemy/sqlalchemy/issues?q=label%3A%22great+mcve%22) + +```py +# insert code here +``` + +**Error** + +``` +# copy error here +``` + +**Versions.** + - OS: + - Python: + - SQLAchemy: + - Database: + - DBAPI: + +**Additional context** +<!-- Add any other context about the problem here. --> + +**Have a nice day!** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..f959b06bd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,22 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: use case +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. + +**Have a nice day!** diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 000000000..d1ef227b4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,25 @@ +--- +name: Question +about: Question regarding SQLAchemy features +title: '' +labels: question +assignees: '' + +--- + +**Describe you question** + +**Example (if applicable)** + +**Additional context** +Add any other context or screenshots about the feature request here. + +**Useful links** +- [Get Support](https://www.sqlalchemy.org/support.html) on the website +- The [documentation](https://docs.sqlalchemy.org/en/latest/) website +- The [UsageRecipes](https://github.com/sqlalchemy/sqlalchemy/wiki/UsageRecipes) wiki +- [Stack Overflow](https://stackoverflow.com/questions/tagged/sqlalchemy) tag +- SQLAlchemy [Google group](http://groups.google.com/group/sqlalchemy) +- [Gitter](https://gitter.im/sqlalchemy/community) chat + +**Have a nice day!** |
