Skip to content

Commit 75ed9ed

Browse files
New bug report
1 parent 9944c61 commit 75ed9ed

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# For top level: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
2+
name: 🪲 [Bug]
3+
description: Submit a bug report
4+
title: '🪲[Bug]: '
5+
labels: ['bug', 'triage']
6+
# For body: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report! Please provide as much information as possible so we can help you quickly.
12+
- type: textarea
13+
id: bug-description
14+
attributes:
15+
label: Describe the bug
16+
description: A clear and concise description of what the bug is vs. what you expected to happen.
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: version
21+
attributes:
22+
label: Version information
23+
description: |
24+
What version are you running of PowerShell and the module?
25+
Please run this to and paste the info here:
26+
```powershell
27+
$PSVersionTable
28+
Get-InstalledModule -Name 'MyModule'
29+
```
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: steps-to-reproduce
34+
attributes:
35+
label: To reproduce
36+
description: Steps to reproduce the problem.
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: code-snippet
41+
attributes:
42+
label: Code snippet
43+
description: Add a code snippet to help us understand what you're trying to do.
44+
render: powershell
45+
validations:
46+
required: true
47+
- type: textarea
48+
id: output
49+
attributes:
50+
label: Relevant output
51+
description: Run the command using `-Debug` and `-Verbose` flags and paste the output here.
52+
render: Shell
53+
validations:
54+
required: true

0 commit comments

Comments
 (0)