From c582ebdc7832bb86b2b58793d6efb68260bf47b2 Mon Sep 17 00:00:00 2001 From: v420v Date: Sat, 14 Dec 2024 13:28:28 +0900 Subject: [PATCH] add: bug-report template --- .github/ISSUE_TEMPLATE/bug-report.yml | 47 +++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..c468a1d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,47 @@ +name: 🐛 Bug Report +description: Report a bug +labels: [Bug] +body: + - type: textarea + id: description + attributes: + label: Describe the bug + validations: + required: true + + - type: textarea + id: reproduction + attributes: + label: Reproduction Steps + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected Behavior + validations: + required: true + + - type: textarea + id: current + attributes: + label: Current Behavior + validations: + required: true + + - type: textarea + id: solution + attributes: + label: Possible Solution + validations: + required: false + + - type: input + id: commitHash + attributes: + label: Commit Hash + description: | + Please make sure to run `git pull` before reporting any issues as it may have already been fixed. + validations: + required: true