From: Federico Caselli Date: Thu, 23 Apr 2020 18:58:30 +0000 (+0200) Subject: Update issue templates X-Git-Tag: rel_1_4_0b1~365 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1596fbc26fc1794531afeacd5d41b21c591c499;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Update issue templates --- diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000..8e2f8f63cd --- /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** + + +**Expected behavior** + + +**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** + + +**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 0000000000..f959b06bd8 --- /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 0000000000..d1ef227b4a --- /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!**