Skip to content

Commit 8107b9f

Browse files
committed
Update GitHub Bug Template. //skipci
1 parent c20f163 commit 8107b9f

File tree

5 files changed

+142
-91
lines changed

5 files changed

+142
-91
lines changed

.github/ISSUE_TEMPLATE/01_support.md

-28
This file was deleted.

.github/ISSUE_TEMPLATE/02_feature_request.md

-29
This file was deleted.

.github/ISSUE_TEMPLATE/03_bug_report.md

-34
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
projects: ["bchavez/Bogus"]
6+
assignees:
7+
- bchavez
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
### Version Information
13+
14+
- type: input
15+
id: version-bogus
16+
attributes:
17+
label: Bogus NuGet Package
18+
description: What version of Bogus are you using?
19+
placeholder: ex. v35.0.1
20+
validations:
21+
required: true
22+
23+
- type: input
24+
id: version-dotnet
25+
attributes:
26+
label: .NET Version
27+
description: What version of .NET are using?
28+
placeholder: ex. Full Framework 4.7.1 or .NET 8?
29+
validations:
30+
required: true
31+
32+
- type: input
33+
id: version-visualstudio
34+
attributes:
35+
label: Visual Studio Version
36+
description: What version of Visual Studio are using?
37+
placeholder: ex. 17.8?
38+
validations:
39+
required: false
40+
41+
- type: dropdown
42+
id: operating-system
43+
attributes:
44+
label: What operating system are you using?
45+
multiple: false
46+
options:
47+
- Windows
48+
- Linux
49+
- MacOS
50+
- Other
51+
validations:
52+
required: true
53+
54+
- type: markdown
55+
attributes:
56+
value: |
57+
### Report
58+
59+
- type: input
60+
id: bogus-locale
61+
attributes:
62+
label: What locale are you using with Bogus?
63+
description:
64+
placeholder: ex. en_GB
65+
validations:
66+
required: true
67+
68+
69+
- type: textarea
70+
id: problem-description
71+
attributes:
72+
label: Problem Description
73+
description: Please share a clear and concise description of the problem.
74+
placeholder:
75+
validations:
76+
required: true
77+
78+
- type: textarea
79+
id: problem-linqpad-repro-steps
80+
attributes:
81+
label: LINQPad Example or Reproduction Steps
82+
description: |
83+
Please provide a LINQPad example of the problem or provide reproduction steps. LINQPad can be downloaded here: https://www.linqpad.net/.
84+
placeholder: "LINQPad can be downloaded here: https://www.linqpad.net/"
85+
validations:
86+
required: true
87+
88+
89+
- type: input
90+
id: contact
91+
attributes:
92+
label: Contact Details
93+
description: How can we get in touch with you if we need more info?
94+
placeholder: ex. [email protected]
95+
validations:
96+
required: false
97+
- type: textarea
98+
id: what-happened
99+
attributes:
100+
label: What happened?
101+
description: Also tell us, what did you expect to happen?
102+
placeholder: Tell us what you see!
103+
value: "A bug happened!"
104+
validations:
105+
required: true
106+
- type: dropdown
107+
id: version
108+
attributes:
109+
label: Version
110+
description: What version of our software are you running?
111+
options:
112+
- 1.0.2 (Default)
113+
- 1.0.3 (Edge)
114+
default: 0
115+
validations:
116+
required: true
117+
- type: dropdown
118+
id: browsers
119+
attributes:
120+
label: What browsers are you seeing the problem on?
121+
multiple: true
122+
options:
123+
- Firefox
124+
- Chrome
125+
- Safari
126+
- Microsoft Edge
127+
- type: textarea
128+
id: logs
129+
attributes:
130+
label: Relevant log output
131+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
132+
render: shell
133+
- type: checkboxes
134+
id: terms
135+
attributes:
136+
label: Code of Conduct
137+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
138+
options:
139+
- label: I agree to follow this project's Code of Conduct
140+
required: true

.github/ISSUE_TEMPLATE/config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
blank_issues_enabled: true
2+

0 commit comments

Comments
 (0)