|
| 1 | +name: 🐞 Bug report |
| 2 | +description: File a bug/issue |
| 3 | +title: "Bug: <title>" |
| 4 | +labels: ["bug"] |
| 5 | +body: |
| 6 | +- type: checkboxes |
| 7 | + attributes: |
| 8 | + label: Is there an existing issue for this? |
| 9 | + description: Please search to see if an issue already exists for the bug you encountered. |
| 10 | + options: |
| 11 | + - label: I have searched the existing issues |
| 12 | + required: true |
| 13 | +- type: textarea |
| 14 | + attributes: |
| 15 | + label: Summary |
| 16 | + description: A concise description of the problem you're experiencing. |
| 17 | + placeholder: | |
| 18 | + When I do '...', I expect '...' to happen, but instead '...' happens. |
| 19 | + validations: |
| 20 | + required: true |
| 21 | +- type: textarea |
| 22 | + attributes: |
| 23 | + label: Steps To Reproduce |
| 24 | + description: Steps to reproduce the behavior. |
| 25 | + placeholder: | |
| 26 | + 1. Open PowerShell v7 prompt as admin... |
| 27 | + 2. Navigate to the repo directory... |
| 28 | + 3. Run the command '...' |
| 29 | + 4. See error... |
| 30 | + validations: |
| 31 | + required: true |
| 32 | +- type: textarea |
| 33 | + id: powershell-version |
| 34 | + attributes: |
| 35 | + label: PowerShell Version |
| 36 | + description: Paste verbatim output from `$PSVersionTable; $Host` below. **Please include `$Host`** so we know this version is from the Extension Terminal! |
| 37 | + render: console |
| 38 | + placeholder: | |
| 39 | + PS> $PSVersionTable; $Host |
| 40 | +
|
| 41 | + Name Value |
| 42 | + ---- ----- |
| 43 | + PSVersion 7.4.0 |
| 44 | + PSEdition Core |
| 45 | + GitCommitId 7.4.0 |
| 46 | + OS Microsoft Windows 10.0.22631 |
| 47 | + Platform Win32NT |
| 48 | + PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…} |
| 49 | + PSRemotingProtocolVersion 2.3 |
| 50 | + SerializationVersion 1.1.0.1 |
| 51 | + WSManStackVersion 3.0 |
| 52 | +
|
| 53 | + Name : Visual Studio Code Host |
| 54 | + Version : 2023.11.0 |
| 55 | + InstanceId : 803ce61b-6187-4574-9c1f-827ebb11b8b6 |
| 56 | + UI : System.Management.Automation.Internal.Host.InternalHostUserInterface |
| 57 | + CurrentCulture : en-US |
| 58 | + CurrentUICulture : en-US |
| 59 | + PrivateData : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy |
| 60 | + DebuggerEnabled : True |
| 61 | + IsRunspacePushed : False |
| 62 | + Runspace : System.Management.Automation.Runspaces.LocalRunspace |
| 63 | + validations: |
| 64 | + required: true |
| 65 | +- type: textarea |
| 66 | + id: vscode-version |
| 67 | + attributes: |
| 68 | + label: Visual Studio Code Version |
| 69 | + description: Paste verbatim output from `code --version` below. |
| 70 | + render: console |
| 71 | + placeholder: | |
| 72 | + PS> code --version |
| 73 | +
|
| 74 | + 1.57.1 |
| 75 | + 507ce72a4466fbb27b715c3722558bb15afa9f48 |
| 76 | + arm64 |
| 77 | + validations: |
| 78 | + required: true |
| 79 | +- type: textarea |
| 80 | + id: extension-version |
| 81 | + attributes: |
| 82 | + label: Extension Version |
| 83 | + description: Paste verbatim output from `code --list-extensions --show-versions | Select-String powershell` below. |
| 84 | + render: console |
| 85 | + placeholder: | |
| 86 | + PS> code --list-extensions --show-versions | Select-String powershell |
| 87 | +
|
| 88 | + ms-vscode.powershell@2021.8.0 |
| 89 | + validations: |
| 90 | + required: true |
| 91 | +- type: textarea |
| 92 | + attributes: |
| 93 | + label: Visuals |
| 94 | + description: Add screenshots, gifs, or videos to help explain the problem. |
| 95 | + placeholder: | |
| 96 | + Here is a screenshot of the problem after I do '...': |
| 97 | +  |
| 98 | +
|
| 99 | + Here is a screenshot of the expected behaviour using an older version: |
| 100 | +  |
| 101 | + validations: |
| 102 | + required: false |
| 103 | +- type: textarea |
| 104 | + attributes: |
| 105 | + label: Anything else? |
| 106 | + description: | |
| 107 | + Any other context or information about the problem or how to reproduce it. |
| 108 | + e.g. Logs files (with sensitive information removed), error messages, links, references, etc. |
| 109 | +
|
| 110 | + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. |
| 111 | + validations: |
| 112 | + required: false |
0 commit comments