Skip to content

Commit d537c89

Browse files
Merge pull request #3332 from PowerShell/andschwa/issue-template
Replace issue templates with modern issue forms
2 parents 4b96833 + 76b8556 commit d537c89

File tree

5 files changed

+105
-94
lines changed

5 files changed

+105
-94
lines changed

.github/ISSUE_TEMPLATE/Bug_report.md

-71
This file was deleted.

.github/ISSUE_TEMPLATE/Feature_request.md

-15
This file was deleted.

.github/ISSUE_TEMPLATE/Support_request.md

-8
This file was deleted.

.github/ISSUE_TEMPLATE/bug-report.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
name: 🐛 Bug report
2+
description: Open an issue about a bug that needs fixing.
3+
labels: Issue-Bug
4+
body:
5+
- type: checkboxes
6+
attributes:
7+
label: Prerequisites
8+
options:
9+
- label: I have written a descriptive issue title.
10+
required: true
11+
- label: I have searched all [issues](https://github.com/PowerShell/vscode-powershell/issues?q=is%3Aissue) to ensure it has not already been reported.
12+
required: true
13+
- label: I have read the [troubleshooting](https://github.com/PowerShell/vscode-powershell/blob/master/docs/troubleshooting.md) guide.
14+
required: true
15+
- label: I have verified that I am using the latest version of Visual Studio Code and the PowerShell extension.
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Summary
20+
description: Explain the problem briefly below.
21+
placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: PowerShell Version
27+
description: Paste verbatim output from `$PSVersionTable` below. Please double-check that this is the PowerShell version that VS Code is set to use.
28+
render: console
29+
placeholder: |
30+
PS> $PSVersionTable
31+
32+
Name Value
33+
---- -----
34+
PSVersion 7.1.3
35+
PSEdition Core
36+
GitCommitId 7.1.3
37+
OS Darwin 20.4.0 Darwin Kernel
38+
Platform Unix
39+
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
40+
PSRemotingProtocolVersion 2.3
41+
SerializationVersion 1.1.0.1
42+
WSManStackVersion 3.0
43+
validations:
44+
required: true
45+
- type: textarea
46+
attributes:
47+
label: Visual Studio Code Version
48+
description: Paste verbatim output from `code --version` below.
49+
render: console
50+
placeholder: |
51+
PS> code --version
52+
53+
1.57.1
54+
507ce72a4466fbb27b715c3722558bb15afa9f48
55+
arm64
56+
validations:
57+
required: true
58+
- type: textarea
59+
attributes:
60+
label: Extension Version
61+
description: Paste verbatim output from `code --list-extensions --show-versions | Select-String powershell` below.
62+
render: console
63+
PS> code --list-extensions --show-versions | Select-String powershell
64+
65+
66+
validations:
67+
required: true
68+
- type: textarea
69+
attributes:
70+
label: Steps to Reproduce
71+
description: List of steps, sample code, failing test or link to a project that reproduces the behavior. Make sure you place a stack trace inside a code (```) block to avoid linking unrelated issues.
72+
validations:
73+
required: true
74+
- type: textarea
75+
attributes:
76+
label: Visuals
77+
description: Please upload images or animations that can be used to reproduce issues in the area below. Try the [Steps Recorder](https://support.microsoft.com/en-us/windows/record-steps-to-reproduce-a-problem-46582a9b-620f-2e36-00c9-04e25d784e47) on Windows or [Screenshot](https://support.apple.com/en-us/HT208721) on macOS.
78+
- type: textarea
79+
attributes:
80+
label: Logs
81+
description: Please upload logs collected by following these [instructions](https://github.com/PowerShell/vscode-powershell/blob/master/docs/troubleshooting.md#logs) in the area below. Be careful to scrub sensitive information!
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ✨ Feature request
2+
description: Open an issue about a potential new feature or improvement.
3+
labels: Issue-Enhancement
4+
body:
5+
- type: checkboxes
6+
attributes:
7+
label: Prerequisites
8+
options:
9+
- label: I have written a descriptive issue title.
10+
required: true
11+
- label: I have searched all [issues](https://github.com/PowerShell/vscode-powershell/issues?q=is%3Aissue) to ensure it has not already been reported.
12+
required: true
13+
- type: textarea
14+
attributes:
15+
label: Summary
16+
description: Explain the feature request below.
17+
placeholder: I would like to do X because it would be useful for Y and I cannot currently do it with Z.
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Proposed Design
23+
description: Optionally explain any technical design below.
24+
placeholder: We could accomplish this by extending X to take Y and yield Z.

0 commit comments

Comments
 (0)