From 90b7a7f2d9bb8fe9e3e7cee0478f76a5b1738898 Mon Sep 17 00:00:00 2001 From: tteckster Date: Fri, 21 Apr 2023 13:07:02 -0400 Subject: [PATCH] Update and rename bug_report.md to bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.md | 16 -------------- .github/ISSUE_TEMPLATE/bug_report.yaml | 29 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 16 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index dae485c8..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve (script related) -title: '' -labels: '' -assignees: '' - ---- - -**Describe the issue** -A clear and concise description of what the bug is. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Bug reports will be closed after 12 hours of NO activity.** diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..91a749f7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,29 @@ +name: Bug report +description: Create a report to help us improve (script related) +body: + - type: markdown + attributes: + value: | + **IMPORTANT:** Before submitting: + - Please search through the closed issues to see if the bug you are reporting has already been reported and resolved. If you find a closed issue that addresses your problem, please leave a comment on that issue instead of opening a new one. + - type: textarea + id: bug + attributes: + label: A clear and concise description of the bug. + validations: + required: true + - type: textarea + id: expect_to_happen + attributes: + label: A clear and concise description of what you expected to happen. + placeholder: I expected that ... + validations: + required: false + - type: textarea + id: reproduce + attributes: + label: Please provide detailed steps to reproduce the issue. + placeholder: First do this, then this.. + validations: + required: false +