Skip to content

Commit 6281286

Browse files
authored
Merge pull request #3920 from arturcic/issue-template
Updates to issue template
2 parents 45515e7 + 0a90a60 commit 6281286

File tree

6 files changed

+72
-137
lines changed

6 files changed

+72
-137
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/documentation.md

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

.github/ISSUE_TEMPLATE/failing-test.md

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

.github/ISSUE_TEMPLATE/feature_request.md

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

.github/ISSUE_TEMPLATE/improvement-request.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: 🐞 Bug/Issue report
2+
description: Create a report to help us improve
3+
title: "[ISSUE]: <title>"
4+
labels: ["needs triage"]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Prerequisites
9+
options:
10+
- label: I have written a descriptive issue title
11+
required: true
12+
- label: I have searched [issues](https://github.com/GitTools/GitVersion/issues) to ensure it has not already been reported
13+
required: true
14+
- type: dropdown
15+
attributes:
16+
label: GitVersion package
17+
options:
18+
- GitVersion.Tool
19+
- GitVersion.MsBuild
20+
- GitVersion.Portable
21+
- gittools/actions
22+
- AzureDevops task
23+
multiple: true
24+
validations:
25+
required: true
26+
- type: input
27+
attributes:
28+
label: GitVersion version
29+
validations:
30+
required: true
31+
- type: dropdown
32+
attributes:
33+
label: Operating system
34+
options:
35+
- Linux
36+
- Windows
37+
- macOS
38+
- N/A
39+
multiple: true
40+
validations:
41+
required: true
42+
- type: textarea
43+
attributes:
44+
label: What are you seeing?
45+
description: Describe the issue you are seeing
46+
validations:
47+
required: true
48+
- type: textarea
49+
attributes:
50+
label: What is expected?
51+
description: Describe what you would expect
52+
validations:
53+
required: true
54+
- type: textarea
55+
attributes:
56+
label: Steps to Reproduce
57+
description: List of steps or sample project to reproduce the issue
58+
validations:
59+
required: true
60+
- type: textarea
61+
attributes:
62+
label: RepositoryFixture Test
63+
description: If you are able to write your bug or scenario up as a `RepositoryFixture` test and submit a pull-request with it, it is going to increase the likelyhood of the bug being fixed. Make sure there is no sensitive data shared and that you place a stack trace inside a code (```csharp) block to avoid formatting issues.
64+
validations:
65+
required: false
66+
- type: textarea
67+
attributes:
68+
label: Output log or link to your CI build (if appropriate).
69+
description: Log messages you receive when running. Make sure there is no sensitive data shared. No need for backticks here.
70+
render: shell
71+
validations:
72+
required: false

0 commit comments

Comments
 (0)