diff options
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 41 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 22 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/question.md | 25 |
3 files changed, 88 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..1566548 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,41 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: requires triage +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. + +```py +# Insert code here +``` + +**Error** + +``` +# Copy error here. Please include the full stack trace. +``` + +**Versions.** + - OS: + - Python: + - Alembic: + - SQLAlchemy: + - 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 0000000..818bd38 --- /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: requires triage +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 0000000..2aa29da --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,25 @@ +--- +name: Question +about: Question regarding Alembic features +title: '' +labels: requires triage +assignees: '' + +--- + +**Describe you question** + +**Example (if applicable)** + +**Additional context** +Add any other context or screenshots about the feature request here. + +**Useful links** +- The [documentation](https://alembic.sqlalchemy.org/en/latest/) website +- The [Cookbook](https://alembic.sqlalchemy.org/en/latest/cookbook.html) wiki +- The SQLAlchemy [documentation](https://docs.sqlalchemy.org/en/latest/) website +- [Stack Overflow](https://stackoverflow.com/questions/tagged/alembic) tag +- Alembic [Google group](https://groups.google.com/forum/#!forum/sqlalchemy-alembic) +- [Gitter](https://gitter.im/sqlalchemy/community) chat + +**Have a nice day!** |