Skip to content

Commit d3877d7

Browse files
committed
add issue template
1 parent 7e1042c commit d3877d7

File tree

3 files changed

+98
-0
lines changed

3 files changed

+98
-0
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
name: Bug report 🐛
2+
description: Report errors or unexpected behavior 🤔
3+
labels: Needs-Triage
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: >
8+
For Windows PowerShell 5.1 issues, suggestions, or feature requests please use the
9+
[Feedback Hub app](https://support.microsoft.com/windows/send-feedback-to-microsoft-with-the-feedback-hub-app-f59187f8-8739-22d6-ba93-f66612949332)
10+
11+
For PowerShellGet v2 issues, please use [PowerShellGetv2 repo](https://github.com/PowerShell/PowerShellGetv2).
12+
13+
This repository is **ONLY** for PowerShellGet v3 issues.
14+
- type: checkboxes
15+
attributes:
16+
label: Prerequisites
17+
options:
18+
- label: Write a descriptive title.
19+
required: true
20+
- label: Make sure you are able to repro it on the [latest released version](https://www.powershellgallery.com/packages/PowerShellGet)
21+
required: true
22+
- label: Search the existing issues.
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Steps to reproduce
27+
description: >
28+
List of steps, sample code, failing test or link to a project that reproduces the behavior.
29+
Make sure you place a stack trace inside a code (```) block to avoid linking unrelated issues.
30+
placeholder: >
31+
I am experiencing a problem with X.
32+
I think Y should be happening but Z is actually happening.
33+
validations:
34+
required: true
35+
- type: textarea
36+
attributes:
37+
label: Expected behavior
38+
render: console
39+
placeholder: |
40+
PS> 2 + 2
41+
4
42+
validations:
43+
required: true
44+
- type: textarea
45+
attributes:
46+
label: Actual behavior
47+
render: console
48+
placeholder: |
49+
PS> 2 + 2
50+
5
51+
validations:
52+
required: true
53+
- type: textarea
54+
attributes:
55+
label: Error details
56+
description: Paste verbatim output from `Get-Error` if PowerShell return an error.
57+
render: console
58+
placeholder: PS> Get-Error
59+
- type: textarea
60+
attributes:
61+
label: Environment data
62+
description: Paste verbatim output from `Get-Module PowerShellGet; $PSVersionTable` below.
63+
render: powershell
64+
placeholder: PS> Get-Module PowerShellGet; $PSVersionTable
65+
validations:
66+
required: true
67+
- type: textarea
68+
attributes:
69+
label: Visuals
70+
description: >
71+
Please upload images or animations that can be used to reproduce issues in the area below.
72+
Try the [Steps Recorder](https://support.microsoft.com/en-us/windows/record-steps-to-reproduce-a-problem-46582a9b-620f-2e36-00c9-04e25d784e47)
73+
on Windows or [Screenshot](https://support.apple.com/en-us/HT208721) on macOS.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Feature Request / Idea 🚀
2+
description: Suggest a new feature or improvement (this does not mean you have to implement it)
3+
labels: [feature_request, Needs-Triage]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Summary of the new feature / enhancement
8+
description: >
9+
A clear and concise description of what the problem is that the
10+
new feature would solve. Try formulating it in user story style
11+
(if applicable).
12+
placeholder: "'As a user I want X so that Y...' with X being the being the action and Y being the value of the action."
13+
validations:
14+
required: true
15+
- type: textarea
16+
attributes:
17+
label: Proposed technical implementation details (optional)
18+
placeholder: >
19+
A clear and concise description of what you want to happen.
20+
Consider providing an example PowerShell experience with expected result.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Documentation Issue
4+
url: https://github.com/MicrosoftDocs/PowerShell-Docs
5+
about: Please open issues on documentation for PowerShellGet here.

0 commit comments

Comments
 (0)