Skip to content

Commit 99fd944

Browse files
committed
Add IDs to forms' text areas (#4452)
So we can fill them in via URL query parameters in a future PR.
1 parent 46fbc32 commit 99fd944

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+7
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@ body:
1414
- label: I have verified that I am using the latest version of Visual Studio Code and the PowerShell extension.
1515
- label: If this is a security issue, I have read the [security issue reporting guidance](https://github.com/PowerShell/vscode-powershell/blob/main/SECURITY.md).
1616
- type: textarea
17+
id: summary
1718
attributes:
1819
label: Summary
1920
description: Explain the problem briefly below.
2021
placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
2122
validations:
2223
required: true
2324
- type: textarea
25+
id: powershell-version
2426
attributes:
2527
label: PowerShell Version
2628
description: Paste verbatim output from `$PSVersionTable` below. Please double-check that this is the PowerShell version that VS Code is set to use.
@@ -42,6 +44,7 @@ body:
4244
validations:
4345
required: true
4446
- type: textarea
47+
id: vscode-version
4548
attributes:
4649
label: Visual Studio Code Version
4750
description: Paste verbatim output from `code --version` below.
@@ -55,6 +58,7 @@ body:
5558
validations:
5659
required: true
5760
- type: textarea
61+
id: extension-version
5862
attributes:
5963
label: Extension Version
6064
description: Paste verbatim output from `code --list-extensions --show-versions | Select-String powershell` below.
@@ -66,16 +70,19 @@ body:
6670
validations:
6771
required: true
6872
- type: textarea
73+
id: steps-to-reproduce
6974
attributes:
7075
label: Steps to Reproduce
7176
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.
7277
validations:
7378
required: true
7479
- type: textarea
80+
id: visuals
7581
attributes:
7682
label: Visuals
7783
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.
7884
- type: textarea
85+
id: logs
7986
attributes:
8087
label: Logs
8188
description: Please upload logs collected by following these [instructions](https://github.com/PowerShell/vscode-powershell/blob/main/docs/troubleshooting.md#logs) in the area below. Be careful to scrub sensitive information!

.github/ISSUE_TEMPLATE/feature-request.yml

+2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ body:
1111
- label: I have searched all [issues](https://github.com/PowerShell/vscode-powershell/issues?q=is%3Aissue) to ensure it has not already been reported.
1212
required: true
1313
- type: textarea
14+
id: summary
1415
attributes:
1516
label: Summary
1617
description: Explain the feature request below.
1718
placeholder: I would like to do X because it would be useful for Y and I cannot currently do it with Z.
1819
validations:
1920
required: true
2021
- type: textarea
22+
id: proposed-design
2123
attributes:
2224
label: Proposed Design
2325
description: Optionally explain any technical design below.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
},
240240
{
241241
"command": "PowerShell.GenerateBugReport",
242-
"title": "Upload Bug Report to Github",
242+
"title": "Upload Bug Report to GitHub",
243243
"category": "PowerShell"
244244
},
245245
{

0 commit comments

Comments
 (0)