From 459277d720e72a0b57846e8257e2db931c176e22 Mon Sep 17 00:00:00 2001 From: bowenlan-amzn Date: Mon, 13 Nov 2023 09:37:15 -0800 Subject: [PATCH] transform bug template Signed-off-by: bowenlan-amzn --- .github/ISSUE_TEMPLATE/bug_template.md | 33 --------------- .github/ISSUE_TEMPLATE/bug_template.yml | 55 +++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 33 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_template.md create mode 100644 .github/ISSUE_TEMPLATE/bug_template.yml diff --git a/.github/ISSUE_TEMPLATE/bug_template.md b/.github/ISSUE_TEMPLATE/bug_template.md deleted file mode 100644 index be3ae51b237ee..0000000000000 --- a/.github/ISSUE_TEMPLATE/bug_template.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: 🐛 Bug report -about: Create a report to help us improve -title: "[BUG]" -labels: 'bug, untriaged' -assignees: '' ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Plugins** -Please list all plugins currently enabled. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Host/Environment (please complete the following information):** - - OS: [e.g. iOS] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_template.yml b/.github/ISSUE_TEMPLATE/bug_template.yml new file mode 100644 index 0000000000000..e1a0af71b4ba9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_template.yml @@ -0,0 +1,55 @@ +name: 🐛 Bug report +about: Create a report to help us improve +title: "[BUG] " +labels: 'bug, untriaged' +assignees: '' +body: + - 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: Steps to reproduce the behavior + value: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + validations: + required: true + - type: textarea + attributes: + label: Documents, Screenshots + description: If applicable, please attach more information like log files or screenshoots to help explain your problem. + validations: + required: false + - type: textarea + attributes: + label: Host/Environment (please complete the following information) + value: | + - OS: [e.g. iOS] + - Version [e.g. 22] + validations: + required: false + - type: textarea + attributes: + label: Plugins + description: Please list all plugins currently enabled. + validations: + required: false + - type: textarea + attributes: + label: Additional context + description: Add any other context about the problem here. + validations: + required: false