From 4130b033f671b261d79128553a176e0600a85257 Mon Sep 17 00:00:00 2001 From: Reece Humphreys Date: Thu, 27 Apr 2023 14:05:25 -0400 Subject: [PATCH] Covert bug template to use .yml form --- .github/ISSUE_TEMPLATE/bug_report.md | 22 -------------- .github/ISSUE_TEMPLATE/bug_report.yml | 42 +++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 22 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index a3cd31874cd..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Version(please complete the following information):** - - Ice Version [e.g. 3.7.4] - - OS: [e.g. Linux, Windows, macOS] - - Distribution: [e.g. YUM, Apt, Homebrew] - -**Describe the bug** -A clear and concise description of what the bug is. - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**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 00000000000..2be4102bd6b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,42 @@ +name: Bug report +description: Create a report to help us improve +labels: [] +body: + - type: textarea + id: version + attributes: + label: Version + description: Please provide the following version information + placeholder: | + - Ice Version [e.g. 3.7.9] + - OS: [e.g. Linux, Windows, macOS] + - Distribution: [e.g. YUM, Apt, Homebrew] + validations: + required: true + - type: textarea + id: description + attributes: + label: Describe the bug + description: | + A clear and concise description of what the bug is. + placeholder: Description + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: | + A clear and concise description of what you expected to happen. + placeholder: Description + validations: + required: true + - type: textarea + id: additional-context + attributes: + label: Additional context + description: | + Add any other context or screenshots about the feature request here. + placeholder: Additional context + validations: + required: true