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