summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-06-15 10:19:54 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-06-15 10:19:54 -0400
commit76beb8dc686c24f7490eaff497636c29f5028a43 (patch)
treec827b688ecb1344d4a8cbf5c3fe21e3968bd7a5b /.github
parentc0f0a3238fe1ec8029d66ad6ac518b60c78c36ed (diff)
downloadalembic-76beb8dc686c24f7490eaff497636c29f5028a43.tar.gz
update issue template to favor discussions in most cases
Change-Id: I1b6044c01c59d060395933818706ef75acc46cdb
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml15
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.md22
-rw-r--r--.github/ISSUE_TEMPLATE/question.md25
-rw-r--r--.github/ISSUE_TEMPLATE/use_case.md24
4 files changed, 39 insertions, 47 deletions
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000..4d5c582
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,15 @@
+blank_issues_enabled: false
+contact_links:
+ - name: Usage Questions (GitHub Discussions)
+ url: https://github.com/sqlalchemy/alembic/discussions/new?category=Usage-Questions
+ about: Questions and Answers for Alembic Users
+ - name: Live Chat on Gitter
+ url: https://gitter.im/sqlalchemy/community
+ about: Searchable Web-Based Chat
+ - name: Ideas / Feature Proposal (GitHub Discussions)
+ url: https://github.com/sqlalchemy/alembic/discussions/new?category=Ideas
+ about: Use this for initial discussion for new features and suggestions
+ - name: SQLAlchemy Community Guide
+ url: https://www.sqlalchemy.org/support.html
+ about: Start here for an overview of SQLAlchemy's support network and posting guidelines
+
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index 818bd38..0000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,22 +0,0 @@
----
-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
deleted file mode 100644
index 8b3c40f..0000000
--- a/.github/ISSUE_TEMPLATE/question.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-name: Question
-about: Question regarding Alembic features
-title: ''
-labels: requires triage
-assignees: ''
-
----
-
-**Describe your 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!**
diff --git a/.github/ISSUE_TEMPLATE/use_case.md b/.github/ISSUE_TEMPLATE/use_case.md
new file mode 100644
index 0000000..8677cb5
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/use_case.md
@@ -0,0 +1,24 @@
+---
+name: Request a new use case
+about: Support for new SQL syntaxes, database capabilities, DBAPIs and DBAPI features
+title: ''
+labels: requires triage,use case
+assignees: ''
+
+---
+
+**Describe the use case**
+<!-- A clear and concise description of what the SQL or database capability is. -->
+
+**Databases / Backends / Drivers targeted**
+
+<!-- what database(s) is this for? What drivers? -->
+
+**Example Use**
+<!-- provide a clear example of what the SQL looks like, or what the DBAPI code looks like -->
+
+
+**Additional context**
+<!-- Add any other context about the problem here. -->
+
+**Have a nice day!**