From 5cf280f2aa10a819eecddeea2496ad79739eab0f Mon Sep 17 00:00:00 2001 From: mors Date: Thu, 11 Jun 2026 10:34:03 +0900 Subject: [PATCH] Convert BUG_REPORT.md to BUG_REPORT.yml Updated the bug report template to YAML format with structured fields. --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 30 -------------- .github/ISSUE_TEMPLATE/BUG_REPORT.yml | 56 +++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 30 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 506bc68..0000000 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Bug Report -about: Report a bug -title: '[BUG] ' -labels: bug ---- - -## Description - -Describe the bug. - -## Steps To Reproduce - -1. -2. -3. - -## Expected Behavior - -What did you expect? - -## Environment - -- VSCode: -- Extension Version: -- OS: - -## Logs - -Paste logs if available. diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 0000000..95fd2a2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,56 @@ +name: Bug Report +description: Report a bug +title: "[BUG] " +labels: + - bug + +body: + - type: textarea + id: description + attributes: + label: Description + description: Describe the bug. + validations: + required: true + + - type: textarea + id: reproduce + attributes: + label: Steps To Reproduce + description: How can we reproduce the issue? + placeholder: | + 1. + 2. + 3. + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected Behavior + description: What did you expect? + validations: + required: true + + - type: input + id: vscode + attributes: + label: VSCode Version + + - type: input + id: extension + attributes: + label: Extension Version + + - type: input + id: os + attributes: + label: Operating System + + - type: textarea + id: logs + attributes: + label: Logs + description: Paste logs if available. + render: shell