Skip to content

Commit e2877fe

Browse files
authored
Merge pull request #7522 from microsoft/issue-form-remote-ssh-bug
Add Form for SSH Bug Issues
2 parents e1f7cc5 + 635ece2 commit e2877fe

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
name: Remote-SSH Bug
2+
description: File a bug/issue for the Remote-SSH extension
3+
title: "[Remote-SSH Bug]: "
4+
labels: ["ssh"]
5+
assignees: "eleanorjboyd"
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for filling out a bug report and helping improve the Remote-SSH extension!
11+
If you have a feature request for Remote-SSH please use the general `Feature request` issue creation button on the previous page.
12+
- type: checkboxes
13+
attributes:
14+
label: Is there an existing issue for this bug?
15+
description: Please search to see if an issue already exists for the bug you encountered.
16+
options:
17+
- label: I have searched the existing issues
18+
required: true
19+
- type: checkboxes
20+
attributes:
21+
label: Debugging Steps
22+
description: Please go through this debugging help document and follow all the required steps, https://code.visualstudio.com/docs/remote/troubleshooting.
23+
options:
24+
- label: I have followed these debugging steps
25+
required: true
26+
- label: I have tried both values of the `remote.SSH.useLocalServer` setting
27+
required: true
28+
- label: My SSH command works from a local terminal
29+
- label: I can connect using the Remote-SSH extension on VS Code when all other VS Code extensions are disabled
30+
- type: textarea
31+
attributes:
32+
label: ->
33+
description: If you did not check any box or if there was a difference in behavior when toggling `remote.SSH.useLocalServer` please elaborate here.
34+
validations:
35+
required: false
36+
- type: textarea
37+
attributes:
38+
label: Versions
39+
description: You can find the VS Code version with [these steps](https://code.visualstudio.com/docs/supporting/FAQ#_how-do-i-find-the-version.). Your Remote-SSH Extension Version number is located next to the name of the extension in the VS Code marketplace, and will follow the format vX.XX.X.
40+
value: |
41+
- VS Code Version:
42+
- Remote OS Version:
43+
validations:
44+
required: true
45+
- type: textarea
46+
attributes:
47+
label: Expected Behavior
48+
description: A concise description of what you expected to happen.
49+
validations:
50+
required: false
51+
- type: textarea
52+
attributes:
53+
label: Steps To Reproduce
54+
description: Steps to reproduce the behavior.
55+
placeholder: |
56+
1. In this environment...
57+
2. With this config...
58+
3. Run '...'
59+
4. See error...
60+
validations:
61+
required: false
62+
- type: textarea
63+
attributes:
64+
label: Remote-SSH Log
65+
description: To find logs first click on the `View` menu at the very top of your computer screen, and then select `Output` from the dropdown. Finally, select `Remote-SSH` from the dropdown on the top right of the `Output` window. Please make sure to provide the entire log as all output is helpful to our debugging.
66+
value: |
67+
<details>
68+
<summary>Remote-SSH Log</summary>
69+
<p>
70+
71+
```
72+
[PASTE LOG HERE]
73+
```
74+
75+
</p>
76+
</details>
77+
validations:
78+
required: true
79+
- type: textarea
80+
attributes:
81+
label: Anything else?
82+
description: |
83+
Links? References? Anything that will give us more context about the issue you are encountering!
84+
85+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
86+
validations:
87+
required: false

0 commit comments

Comments
 (0)