diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 65c67ba9..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Describe the issue** -A clear and concise description of what the bug is. - -**Environment** -Describe your environment. - - Platform: [Windows / MacOS / Ubuntu] - - Python version: - - `bigtree` version: - -**To Reproduce** -Steps or code to reproduce the behaviour: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behaviour** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..3948f0b0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,45 @@ +name: Bug report +description: Create a report to help us improve +labels: ["bug"] +body: + - type: textarea + attributes: + label: Describe the issue + description: A clear and concise description of what the bug is. + validations: + required: true + - type: textarea + attributes: + label: Environment + description: Describe your environment. + placeholder: | + - Platform: [Windows / MacOS / Ubuntu] + - Python version: + - `bigtree` version: + validations: + required: true + - type: textarea + attributes: + label: To Reproduce + description: Steps or code to reproduce the behaviour. + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + attributes: + label: Expected behaviour + description: A clear and concise description of what you expected to happen. + validations: + required: true + - type: textarea + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain your problem. + - type: textarea + attributes: + label: Additional context + description: Add any other context about the problem here.