+++ /dev/null
----
-name: Create a bug report
-about: Errors and regression reports with complete reproducing test cases and/or stack traces.
-title: ''
-labels: requires triage
-assignees: ''
-
----
-
-<!--
-
-**GUIDELINES FOR REPORTING BUGS**
-
-If you are new to SQLAlchemy bug reports, please review our many examples
-of [well written bug reports](https://github.com/sqlalchemy/sqlalchemy/issues?q=is%3Aissue+label%3A%22great+mcve%22). Each of these reports include the following features:
-
-1. a **succinct description of the problem** - typically a line or two at most
-2. **succinct, dependency-free code which reproduces the problem**, otherwise known as a [Minimal, Complete, and Verifiable](https://stackoverflow.com/help/mcve) example.
-3. **complete stack traces for all errors - please avoid screenshots, use formatted text inside issues**
-4. Other things as applicable: **SQL log output**, **database backend and DBAPI driver**,
- **operating system**, **comparative performance timings** for performance issues.
-
--->
-
-**Describe the bug**
-<!-- A clear and concise description of what the bug is. -->
-
-**To Reproduce**
-Provide your [Minimal, Complete, and Verifiable](https://stackoverflow.com/help/mcve) example
-here.
-
-```py
-# Insert code here
-```
-
-**Error**
-Provide the complete text of any errors received **including the complete
-stack trace**. If the message is a warning, run your program with the
-``-Werror`` flag: ``python -Werror myprogram.py``
-
-```
-# Copy complete stack trace and error message here, including SQL log output
-if applicable.
-```
-
-**Versions.**
- - OS:
- - Python:
- - SQLAlchemy:
- - Database:
- - DBAPI:
-
-**Additional context**
-<!-- Add any other context about the problem here. -->
-
-**Have a nice day!**
--- /dev/null
+# docs https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
+# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
+
+name: Create a bug report
+description: Errors and regression reports with complete reproducing test cases and/or stack traces.
+labels: [requires triage]
+body:
+ - type: markdown
+ attributes:
+ value: "
+**GUIDELINES FOR REPORTING BUGS**
+
+If you are new to SQLAlchemy bug reports, please review our many examples
+of [well written bug reports](https://github.com/sqlalchemy/sqlalchemy/issues?q=is%3Aissue+label%3A%22great+mcve%22). Each of these reports include the following features:
+
+1. a **succinct description of the problem** - typically a line or two at most
+
+2. **succinct, dependency-free code which reproduces the problem**, otherwise known as a [Minimal, Complete, and Verifiable](https://stackoverflow.com/help/mcve) example.
+
+3. **complete stack traces for all errors - please avoid screenshots, use formatted text inside issues**
+
+4. Other things as applicable: **SQL log output**, **database backend and DBAPI driver**,
+ **operating system**, **comparative performance timings** for performance issues.
+"
+ - type: textarea
+ attributes:
+ label: Describe the bug
+ description: A clear and concise description of what the bug is.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: To Reproduce
+ description: "
+Provide your [Minimal, Complete, and Verifiable](https://stackoverflow.com/help/mcve) example here.
+If you need help creating one, you can model yours after the MCV code shared in one of our previous
+[well written bug reports](https://github.com/sqlalchemy/sqlalchemy/issues?q=is%3Aissue+label%3A%22great+mcve%22)"
+ placeholder: "# Insert code here"
+ render: python
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Error
+ description: "
+Provide the complete text of any errors received **including the complete stack trace**.
+If the message is a warning, run your program with the ``-Werror`` flag: ``python -Werror myprogram.py``
+"
+ placeholder: "# Copy complete stack trace and error message here, including SQL log output if applicable."
+ render: ''
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Versions
+ value: |
+ - OS:
+ - Python:
+ - SQLAlchemy:
+ - Database:
+ - DBAPI:
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Additional context
+ description: Add any other context about the problem here.
+ validations:
+ required: false
+
+ - type: markdown
+ attributes:
+ value: "**Have a nice day!**"
+++ /dev/null
----
-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!**
--- /dev/null
+# docs https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
+# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
+
+name: Request a new use case
+description: Support for new SQL syntaxes, database capabilities, DBAPIs and DBAPI features
+labels: [requires triage,use case]
+body:
+ - type: textarea
+ attributes:
+ label: Describe the use case
+ description: A clear and concise description of what the SQL or database capability is.
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Databases / Backends / Drivers targeted
+ description: What database(s) is this for? What drivers?
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Example Use
+ description: Provide a clear example of what the SQL looks like, or what the DBAPI code looks like
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Additional context
+ description: Add any other context about the use case here.
+ validations:
+ required: false
+
+ - type: markdown
+ attributes:
+ value: "**Have a nice day!**"