From 638a2ae0340eb05025e6d88bdf6033aaa4cd5510 Mon Sep 17 00:00:00 2001 From: hizumi <> Date: Thu, 22 Feb 2024 21:59:10 -0600 Subject: [PATCH] replace bug report template with yaml form --- .gitea/ISSUE_TEMPLATE/bug_report.md | 27 -------------------- .gitea/ISSUE_TEMPLATE/bug_report.yaml | 36 +++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 27 deletions(-) delete mode 100644 .gitea/ISSUE_TEMPLATE/bug_report.md create mode 100644 .gitea/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.gitea/ISSUE_TEMPLATE/bug_report.md b/.gitea/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index fd7283d..0000000 --- a/.gitea/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: 'Kind/Bug' -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. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Additional context** -Add any other context about the problem here. \ No newline at end of file diff --git a/.gitea/ISSUE_TEMPLATE/bug_report.yaml b/.gitea/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000..663f4c2 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,36 @@ +name: Bug Report +about: File a bug report to help us improve +title: "" +labels: "Kind/Bug" +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: Describe the bug! + description: What did you see, and what did you expect to happen. + render: markdown + value: "A bug happened!" + validations: + required: true + - type: textarea + id: reproduce-steps + attributes: + label: How can we reproduce this? + description: "Steps to reproduce the behavior (and attach full log here if needed)" + value: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code + render: shell \ No newline at end of file