Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaira Wenzel <mairaw@microsoft.com>2022-01-12 04:44:07 +0300
committerGitHub <noreply@github.com>2022-01-12 04:44:07 +0300
commita24063f141657ba5910790ccb1c39eb77e9e4ee8 (patch)
tree8bb75d656cf334c3e7404b76894f7072f2e0b5c3 /.github
parentbc8d446d55e53ed5a62b1356b83529c9b65efde2 (diff)
Add new template for tutorial bugs (#7110)
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/02_tutorial_report.yml53
1 files changed, 53 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/02_tutorial_report.yml b/.github/ISSUE_TEMPLATE/02_tutorial_report.yml
new file mode 100644
index 00000000..babee0cb
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/02_tutorial_report.yml
@@ -0,0 +1,53 @@
+name: Tutorial Bug Report
+description: Let us know what issues you're facing when trying to run .NET tutorials on the dot.net website.
+title: "[.NET Tutorial]: "
+labels: [area-tutorials]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ We welcome bug reports! Please help us gather the information we need to start the triage process.
+ - type: input
+ id: url
+ attributes:
+ label: URL
+ description: In what page are you having issues?
+ placeholder: https://dotnet.microsoft.com
+ validations:
+ required: true
+ - type: dropdown
+ id: os
+ attributes:
+ label: Operating system
+ description: What is your operating system?
+ options:
+ - Windows
+ - macOS
+ - Linux
+ validations:
+ required: true
+ - type: input
+ id: os-version
+ attributes:
+ label: More information about your system
+ description: |
+ Please provide more information on your .NET configuration:
+ * OS version, and distro if applicable
+ * What is the architecture (x64, x86, ARM, ARM64)?
+ validations:
+ required: false
+ - type: textarea
+ id: description
+ attributes:
+ label: Description
+ description: Provide details about the problem you're experiencing. Include enough details for us to be able to triage it like exact error message, code sample, or anything else that is relevant.
+ placeholder: Description
+ validations:
+ required: true
+ - type: textarea
+ id: dotnet-info
+ attributes:
+ label: dotnet --info
+ description: Run the dotnet --info command and copy and paste the results
+ validations:
+ required: false