|
| 1 | +--- |
| 2 | +name: Bug or problem report |
| 3 | +about: If you have a general question or request for help. |
| 4 | +labels: triage needed, bug |
| 5 | +assignees: '' |
| 6 | +--- |
| 7 | + |
| 8 | +<!-- |
| 9 | + Your feedback and support is greatly appreciated, thanks so much for contributing! |
| 10 | +
|
| 11 | + Please provide information regarding your issue under each header below. |
| 12 | + If appropriate, your response to a header can be "N/A". |
| 13 | +
|
| 14 | + You may remove this and all other comment block, but please keep the |
| 15 | + headers (the lines starting with '####'). |
| 16 | +--> |
| 17 | +#### Issue Details |
| 18 | + |
| 19 | + |
| 20 | +#### Steps to reproduce the issue |
| 21 | +```powershell |
| 22 | + # Include your repro steps here |
| 23 | +``` |
| 24 | + |
| 25 | +#### Verbose logs showing the problem |
| 26 | +<!-- |
| 27 | + If the problem is consistent, you can grab this from the console by re-running your |
| 28 | + command and adding "-Verbose" to the end. If it's not consistent, you can grab the |
| 29 | + previous logs from your log file: (Get-GitHubConfiguration -Name LogPath) |
| 30 | +--> |
| 31 | + |
| 32 | + |
| 33 | +#### Suggested solution to the issue |
| 34 | +<!-- |
| 35 | + It's totally ok if you don't have one. This section is here for those users who |
| 36 | + have decided to dive into the code to see what might be going on. |
| 37 | +--> |
| 38 | + |
| 39 | + |
| 40 | +#### Requested Assignment |
| 41 | +<!-- |
| 42 | + Some people just want to report a bug and let someone else fix it. |
| 43 | + Other people want to not only submit the bug report, but fix it as well. |
| 44 | + Both scenarios are completely ok. We would just like to know which way you feel. |
| 45 | + Please replace this comment with one of the following options: |
| 46 | +
|
| 47 | + - If possible, I would like to fix this. |
| 48 | + - I'm just reporting this problem, but don't want to fix it. |
| 49 | +--> |
| 50 | + |
| 51 | + |
| 52 | +#### Operating System |
| 53 | +<!-- |
| 54 | + Please provide as much as possible about your system. |
| 55 | + If this works on your device, please replace this whole comment with the output of this command: |
| 56 | +
|
| 57 | + Get-ComputerInfo -Property @( |
| 58 | + 'OsName', |
| 59 | + 'OsOperatingSystemSKU', |
| 60 | + 'OSArchitecture', |
| 61 | + 'WindowsVersion', |
| 62 | + 'WindowsBuildLabEx', |
| 63 | + 'OsLanguage', |
| 64 | + 'OsMuiLanguages') |
| 65 | +
|
| 66 | + Otherwise, please replace this whole comment with the output of this command: |
| 67 | +
|
| 68 | + [ordered]@{ |
| 69 | + 'OSVersion' = ([System.Environment]::OSversion).VersionString |
| 70 | + 'Is 64-bit' = [System.Environment]::Is64BitOperatingSystem |
| 71 | + 'Current culture' = (Get-Culture).Name |
| 72 | + 'Current UI culture' = (Get-UICulture).Name |
| 73 | + } |
| 74 | +--> |
| 75 | + |
| 76 | + |
| 77 | +#### PowerShell Version |
| 78 | +<!-- |
| 79 | + Please replace this whole comment with the output of this command: |
| 80 | +
|
| 81 | + $PSVersionTable |
| 82 | +--> |
| 83 | + |
| 84 | + |
| 85 | +#### Module Version |
| 86 | +<!-- |
| 87 | + Please replace this whole comment with the output of this command: |
| 88 | +
|
| 89 | + @( |
| 90 | + "Running: $((Get-Module -Name PowerShellForGitHub) | Select-Object -ExpandProperty Version)", |
| 91 | + "Installed: $((Get-Module -Name PowerShellForGitHub -ListAvailable) | Select-Object -ExpandProperty Version)" |
| 92 | + ) -join [Environment]::NewLine |
| 93 | +--> |
0 commit comments