From 3e17c7c8885bc13bbccab8e8a413d3667dd8c5d2 Mon Sep 17 00:00:00 2001 From: Max Katz Date: Tue, 5 Mar 2024 19:50:28 -0500 Subject: [PATCH] Create bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 50 +++++++++++++++++++++++++++ 1 file changed, 50 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 0000000000..e70693d358 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,50 @@ +name: Bug Report +description: File a bug report +labels: ["bug"] +body: + - type: textarea + id: what-happened + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + validations: + required: true + - type: textarea + id: steps + attributes: + label: To Reproduce + description: Steps to reproduce the behavior. + validations: + required: true + - type: textarea + id: what-expected + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + - type: input + id: avalonia-version + attributes: + label: Avalonia version + placeholder: e.g. 11.0.9, 11.1.0 + validations: + required: true + - type: dropdown + id: os + attributes: + label: OS + multiple: true + options: + - Windows + - macOS + - Linux + - WebAssembly + - Android + - iOS + - Tizen + - type: textarea + id: additional-info + attributes: + label: Additional context + description: | + Add any other context about the problem here. + If applicable, add screenshots to help explain your problem.