From 273bb4b97f7d771a53a6f5316361c02eea8ac2e4 Mon Sep 17 00:00:00 2001 From: Vlad Zarytovskii Date: Fri, 23 Sep 2022 17:00:13 +0200 Subject: [PATCH] Create bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 69 +++++++++++++++++++++++++++ 1 file changed, 69 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 000000000..2d2dfd32d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,69 @@ +name: 🐞 Bug +description: File a bug/issue +title: "Issue: Bug report" +labels: [Needs Triage] +body: +- type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true +- type: textarea + attributes: + label: Issue description + description: Please provide a succinct description of the issue you're experiencing. + validations: + required: true +- type: textarea + attributes: + label: Steps To Reproduce + description: Provide the steps required to reproduce the problem. + placeholder: | + 1. Step A + 2. Step B... + validations: + required: false +- type: textarea + attributes: + label: Expected Behavior + description: Provide a description of the expected behavior. + validations: + required: true +- type: textarea + attributes: + label: Actual Behavior + description: Provide a description of the actual behaviour observed. + validations: + required: true +- type: textarea + attributes: + label: Known workarounds + description: Provide a description of the actual behaviour observed. + validations: + required: true +- type: textarea + attributes: + label: Related information + description: | + Provide any related information (optional), examples: + - **OS**: Windows 11 + - **.NET Runtime Kind and version**: .NET Framework 4.8 and .NET 7 + - **Tooling**: Visual Studio 2022 + value: | + - OS: + - .NET Runtime Kind and version: + - Tooling: + render: markdown + validations: + required: false +- type: textarea + attributes: + label: Anything else? + description: | + Links? References? Anything that will give us more context about the issue you are encountering! + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + validations: + required: false -- GitLab