]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
add issue templates
authorCaselIT <cfederico87@gmail.com>
Mon, 27 Apr 2020 19:03:52 +0000 (21:03 +0200)
committerCaselIT <cfederico87@gmail.com>
Mon, 27 Apr 2020 19:03:52 +0000 (21:03 +0200)
Change-Id: Ia4ad98ffe4c648a2556bde163ccc364e27f35873

.github/ISSUE_TEMPLATE/bug_report.md [new file with mode: 0644]
.github/ISSUE_TEMPLATE/feature_request.md [new file with mode: 0644]
.github/ISSUE_TEMPLATE/question.md [new file with mode: 0644]

diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644 (file)
index 0000000..1566548
--- /dev/null
@@ -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 (file)
index 0000000..818bd38
--- /dev/null
@@ -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 (file)
index 0000000..2aa29da
--- /dev/null
@@ -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!**