Skip to content

Commit f02b392

Browse files
bergmeisterJamesWTruher
authored andcommitted
Use multiple GitHub issue templates for bugs, feature requests and support questions (#986)
* add more details * Use multiple issue templates for bugs, features requests and support questions.
1 parent ac22b0e commit f02b392

File tree

4 files changed

+72
-32
lines changed

4 files changed

+72
-32
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/Bug_report.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
name: Bug report 🐛
3+
about: Report errors or unexpected behavior 🤔
4+
5+
---
6+
7+
Before submitting a bug report:
8+
9+
- Make sure you are able to repro it on the latest released version
10+
- Perform a quick search for existing issues to check if this bug has already been reported
11+
12+
Steps to reproduce
13+
------------------
14+
15+
```PowerShell
16+
17+
```
18+
19+
Expected behavior
20+
-----------------
21+
22+
```none
23+
24+
```
25+
26+
Actual behavior
27+
---------------
28+
29+
```none
30+
31+
```
32+
33+
If an unexpected error was thrown then please report the full error details using e.g. `$error[0] | Select-Object *`
34+
35+
Environment data
36+
----------------
37+
38+
<!-- Provide the output of the following 2 commands -->
39+
40+
```PowerShell
41+
> $PSVersionTable
42+
43+
> (Get-Module -ListAvailable PSScriptAnalyzer).Version | ForEach-Object { $_.ToString() }
44+
45+
```
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Feature request/idea 🚀
3+
about: Suggest a new feature or improvement (this does not mean you have to implement it)
4+
5+
---
6+
7+
**Summary of the new feature**
8+
9+
A clear and concise description of what the problem is that the new feature would solve.
10+
Try formulating it in user story style (if applicable):
11+
'As a user I want X so that Y.' with X being the being the action and Y being the value of the action.
12+
13+
**Proposed technical implementation details (optional)**
14+
15+
A clear and concise description of what you want to happen.
16+
17+
**What is the latest version of PSScriptAnalyzer at the point of writing**
18+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Support Question ❓
3+
about: If you have a question, you can try asking in the scriptanalyzer channel of the international PowerShell Slack channel first.
4+
5+
---
6+
7+
* Slack Community Chat: https://powershell.slack.com (you can sign-up at http://slack.poshcode.org/ for an invite)
8+
* Also have a look at the `RoleDocumentation` folder for more information on each rule:
9+
https://github.com/PowerShell/PSScriptAnalyzer/tree/development/RuleDocumentation

0 commit comments

Comments
 (0)