diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..0857a4b7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,37 @@ +name: Bug Report +description: Create a bug report +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for filling out this report to help us improve! + - type: input + id: python-version + attributes: + label: Python Version + description: What python version are you using? + placeholder: python version + validations: + required: true + - type: text-area + id: bug-description + attributes: + label: Describe the bug + description: A clear and concise description of the bug. + validations: + required: true + - type: text-area + id: reproduce + attributes: + label: Steps to reproduce the behaviour + description: Tell us how to reproduce this behaviour. Please try to include a [Minimum Workable Example](https://stackoverflow.com/help/minimal-reproducible-example) + validations: + required: true + - type: text-area + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..58987bf0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,35 @@ +name: Feature request +about: Suggest a feature +title: "[Feature]:" +labels: ["enhancement"] +body: + -type: markdown + attributes: + value: | + Thanks for filling out this report to help us improve! + -type: input + id: Feature + attributes: + label: Feature description + description: Describe the feature you'd like + placeholder: Feature description + validations: + required: true + -type: input + id: Motivation + attributes: + label: Motivation + description: Please enter the motivation for this feature i.e (problem, performance, etc) + -type: input + id: Possible Implementation + attributes: + label: Possible implementation + description: Please enter any possible implementation for this feature + -type: input + id: Additional context + attributes: + label: Additional context + description: Add any additional context about the feature request. + placeholder: Additional context + +