Skip to content

Commit e24031d

Browse files
authored
Update bug report templates to use Issue Form
1 parent 8be7328 commit e24031d

File tree

2 files changed

+131
-84
lines changed

2 files changed

+131
-84
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
name: Bug report
2+
description: Create a report to help us fix something that isn't working as expected
3+
labels: "bug :bug:"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
🚨 PLEASE DO NOT SKIP ANY INSTRUCTIONS AND INFORMATION MENTIONED BELOW AS THEY ARE ALL REQUIRED AND ESSENTIAL TO INVESTIGATE THE ISSUE. ISSUES WITH MISSING INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION
9+
IF YOU'RE NOT CERTAIN ABOUT THE ISSUE AND REQUIRE MORE CLARITY, PLEASE POST ON "QUESTIONS & HELP" CATEGORY OF THE DISCUSSIONS PLATFORM [https://github.com/CommunityToolkit/WindowsCommunityToolkit/discussions/categories/questions-help] WHERE YOU CAN DISCUSS AND ENGAGE WITH THE COMMUNITY TO GAIN FURTHER CLARITY REGARDING THE ISSUE 🚨
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Describe the bug
14+
description: A clear and concise description of what the bug is.
15+
- type: checkboxes
16+
id: is-regression
17+
attributes:
18+
description:
19+
options:
20+
- label: This bug is a regression
21+
required: false
22+
- type: input
23+
id: last-working-toolkit-version
24+
attributes:
25+
description: If this is a regression, what toolkit version did you last see it work?
26+
placeholder:
27+
validations:
28+
required: false
29+
- type: checkboxes
30+
id: reproducable-in-sample-app
31+
attributes:
32+
description: Can this be reproduced in the Sample App? (Either in a sample as-is or with new XAML pasted in the editor.) Being able to reproduce the problem in the sample app, really stream-lines the whole process in being able to discover, resolve, and validate bug fixes.
33+
options:
34+
- label: This bug can be reproduced in the sample app.
35+
required: false
36+
validations:
37+
required: false
38+
- type: textarea
39+
id: repro-steps
40+
validations:
41+
required: true
42+
attributes:
43+
label: Steps to reproduce
44+
description: If so, please provide custom XAML or steps to reproduce. If not, let us know why it can't be reproduced (e.g. more complex setup, environment, dependencies, etc...)
45+
placeholder: |
46+
1. Given the following environment (Sample App w/ XAML, Project with Isolated setup, etc...)
47+
2. Go to '...'
48+
3. Click on '....'
49+
4. Scroll down to '....'
50+
5. See error
51+
52+
Provide as many code-snippets or XAML snippets as appropriate.
53+
- type: textarea
54+
id: expected-behavior
55+
validations:
56+
required: true
57+
attributes:
58+
label: Expected behavior
59+
description: A clear and concise description of what you expected to happen.
60+
- type: markdown
61+
id: screenshots
62+
attributes:
63+
label: Screenshots
64+
description: If applicable, add screenshots to help explain your problem.
65+
- type: dropdown
66+
id: environment-windows-build
67+
attributes:
68+
label: Windows 10 Build Number
69+
description: Check one or more of the following options
70+
options:
71+
- Fall Creators Update (16299)
72+
- April 2018 Update (17134)
73+
- October 2018 Update (17763)
74+
- May 2019 Update (18362)
75+
- May 2020 Update (19041)
76+
- Insider Build
77+
- type: input
78+
id: insider-build-number-windows
79+
attributes:
80+
description: The Insider Builder number, if applicable.
81+
- type: dropdown
82+
id: environment-app-min-target-version
83+
attributes:
84+
multiple: true
85+
label: Windows 10 Build Number
86+
description: Check one or more of the following options
87+
options:
88+
- Fall Creators Update (16299)
89+
- April 2018 Update (17134)
90+
- October 2018 Update (17763)
91+
- May 2019 Update (18362)
92+
- May 2020 Update (19041)
93+
- Insider Build
94+
- type: input
95+
id: insider-build-number-app
96+
attributes:
97+
description: The Insider Builder number, if applicable.
98+
- type: dropdown
99+
id: form-factor
100+
attributes:
101+
multiple: true
102+
label: Device form factor
103+
description: Check one or more of the following options
104+
options:
105+
- Desktop
106+
- Xbox
107+
- Surface Hub
108+
- IoT
109+
- type: dropdown
110+
id: visual-studio-version
111+
attributes:
112+
multiple: true
113+
label: Device form factor
114+
description: Check one or more of the following options
115+
options:
116+
- 2017
117+
- 2019
118+
- 2022
119+
- type: input
120+
id: visual-studio-exact-build
121+
attributes:
122+
description: What's the exact build number? (Found in Visual Studio under Help -> About Microsoft Visual Studio)
123+
- type: textarea
124+
id: nuget-packaages
125+
attributes:
126+
description: Which NuGet packages have you used? Include the version number.
127+
- type: markdown
128+
id: additional-context
129+
attributes:
130+
description: Add any other context about the problem here.
131+

0 commit comments

Comments
 (0)