master
yaml 103 lines 3.55 KB
Raw
1 ---
2 name: "WSL - Bug Report"
3 description: Report a bug on Windows Subsystem for Linux
4 body:
5 - type: markdown
6 attributes:
7 value: |
8 Please [search for existing issues](https://github.com/microsoft/WSL/issues) before creating a new one.
9 If you'd like to create a new bug report, please [read the guidance here](https://github.com/Microsoft/WSL/blob/master/CONTRIBUTING.md) before getting started. This will save you time.
10
11 - type: input
12 attributes:
13 label: Windows Version
14 description: |
15 Please run `cmd.exe /c ver` to get the build of Windows you are on.
16 placeholder: "Microsoft Windows [Version 10.0.19042.867]"
17 validations:
18 required: true
19
20 - type: input
21 attributes:
22 label: WSL Version
23 description: |
24 If you are running Windows Subsystem for Linux from the Microsoft Store, please run `wsl.exe --version`.
25 Else `0.0.0.0`
26 placeholder: "0.0.0.0"
27 validations:
28 required: true
29
30 - type: checkboxes
31 attributes:
32 label: Are you using WSL 1 or WSL 2?
33 description: |
34 Tell us whether the issue is on WSL 2 and/or WSL 1. You can tell by running `wsl -l -v`.
35 options:
36 - label: "WSL 2"
37 - label: "WSL 1"
38
39 - type: input
40 attributes:
41 label: Kernel Version
42 description: |
43 Please tell us what version of the Linux kernel you are using, or if you are using a custom kernel.
44 You can run `wsl.exe --status` if that command is available to you, or by running `cat /proc/version` in your distro.
45 placeholder: "5.4.72"
46 validations:
47 required: false
48
49 - type: input
50 attributes:
51 label: Distro Version
52 description: |
53 Please tell us what distro you are using (if applicable).
54 You can get additional information about the version where possible, e.g. on Debian / Ubuntu, run `lsb_release -r`
55 placeholder: "Ubuntu 16.04"
56 validations:
57 required: false
58
59 - type: textarea
60 attributes:
61 label: Other Software
62 description: If you're reporting a bug involving WSL's interaction with other applications, please tell us. What applications? What versions?
63 placeholder: |
64 Docker Desktop (Windows), version 3.2.2
65 traceroute, Version: 1:2.0.21-1
66 Visual Studio Code 1.54.3 with Remote-WSL Extension 0.54.6
67 MyCustomApplication
68 validations:
69 required: false
70
71 - type: textarea
72 attributes:
73 label: Repro Steps
74 description: Please list out the steps to reproduce your bug.
75 placeholder: Your steps go here. Include relevant environmental variables or any other configuration.
76 validations:
77 required: true
78
79 - type: textarea
80 attributes:
81 label: Expected Behavior
82 description: What were you expecting to see? Include any relevant examples or documentation links.
83 placeholder: If you want to include screenshots, paste them into the text area or follow up with a separate comment.
84 validations:
85 required: true
86
87 - type: textarea
88 attributes:
89 label: Actual Behavior
90 description: What happened instead?
91 placeholder: Include the terminal output, straces of the failing command, etc. as necessary.
92 validations:
93 required: true
94
95 - type: textarea
96 attributes:
97 label: Diagnostic Logs
98 description: |
99 Please provide additional diagnostics if needed.
100 See the [guidance](https://github.com/Microsoft/WSL/blob/master/CONTRIBUTING.md) for info on how to gather Feedback Hub logs, networking logs, and more.
101 placeholder: Your links to logs or other information go here.
102 validations:
103 required: false