Skip to content

Commit f6521eb

Browse files
committed
Adding form template for bug report in yml
1 parent 213f2db commit f6521eb

1 file changed

Lines changed: 127 additions & 0 deletions

File tree

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
name: Bug Report new form
2+
title: '[Bug]: '
3+
description: File a bug report
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value:
9+
Thanks for taking the time to fill out this bug report. It will greatly assist us in accurately identifying the issue. Here is a [good sample report](https://github.com/MicrosoftEdge/WebView2Feedback/issues/3648)
10+
- id: what-happened
11+
type: textarea
12+
attributes:
13+
description: Please tell us what's not working as expected. Please include callstacks and error messages if possible.
14+
label: What happened?
15+
placeholder: Please describe the issue you encountered. Callstacks and error messages are helpful.
16+
validations:
17+
required: true
18+
- id: importance
19+
type: dropdown
20+
attributes:
21+
label: Importance
22+
description: May you help us understand the level of importance of this ask to you?
23+
multiple: false
24+
options:
25+
- ----Please select----
26+
- Blocking. My app's basic functions cannot work.
27+
- Important. My app's user experience is significantly compromised.
28+
- Moderate. This issue has a certain impact on my app.
29+
validations:
30+
required: true
31+
- id: runtime-channel
32+
type: dropdown
33+
attributes:
34+
label: Runtime Channel
35+
description: Are you seeing this issue in stable release or prerelease of WebView2 runtime?
36+
multiple: true
37+
options:
38+
- Stable release
39+
- Prerelease (Canary/Dev/Beta)
40+
validations:
41+
required: true
42+
- type: markdown
43+
attributes:
44+
value: |
45+
**Tip:** it's recommended to test your web content in the WebView2 control against Microsoft Edge Insider (preview) Channels (Beta, Dev, or Canary). [Download here](https://www.microsoft.com/en-us/edge/download/insider?form=MA13FJ). For more information please checkout the [development best practices](https://learn.microsoft.com/en-us/microsoft-edge/webview2/concepts/developer-guide#run-compatibility-tests-regularly-when-using-the-evergreen-runtime).
46+
- id: runtime-version
47+
type: input
48+
attributes:
49+
description: Please enter the Runtime version you are using. (e.g. 114.0.1823.79)
50+
label: Runtime Version
51+
validations:
52+
required: true
53+
- id: sdk-version
54+
type: input
55+
attributes:
56+
description: Please enter the SDK version you are using. (e.g. 1.0.1905-prerelease)
57+
label: SDK Version
58+
validations:
59+
required: true
60+
61+
- id: framework
62+
type: dropdown
63+
attributes:
64+
description: What framework are you using?
65+
label: Framework
66+
options:
67+
- Please select
68+
- WPF
69+
- Win32
70+
- Winforms
71+
- UWP/WinUI2
72+
- WinUI3
73+
- Unity Plugin
74+
- Other
75+
validations:
76+
required: true
77+
- id: os
78+
type: dropdown
79+
attributes:
80+
description: What operating system are you using?
81+
label: Operating System
82+
multiple: true
83+
options:
84+
- Windows 10
85+
- Windows 11
86+
- Earlier than Windows 10 (deprecated)
87+
- Windows Server
88+
- Xbox
89+
- Hololens
90+
- Other
91+
validations:
92+
required: true
93+
94+
- id: os-version
95+
type: input
96+
attributes:
97+
description: Please enter the OS version you are using. (e.g., 22H2, 21H1, etc.)
98+
label: OS Version
99+
validations:
100+
required: false
101+
- id: repro-steps
102+
type: textarea
103+
attributes:
104+
description: Minimal steps needed to reproduce the bug. Please be clear on what the expected behavior is vs. what the actual behavior is. Please provide a minimal sample app that demonstrates the issue, if possible.
105+
label: Repro steps and sample app
106+
placeholder: Please let us know how to reproduce this bug. A sample app would be very helpful.
107+
validations:
108+
required: false
109+
- id: regression
110+
type: dropdown
111+
attributes:
112+
description: Was this working before, but has regressed?
113+
label: Regression
114+
options:
115+
- No, this never worked
116+
- Regression in Runtime
117+
- Regression in SDK
118+
- Don't know
119+
validations:
120+
required: true
121+
- id: last-working-version
122+
type: input
123+
attributes:
124+
description: If this is a regression, what was the last working version of SDK and Runtime? (e.g. SDK 1.0.1774.30, Runtime 114.0.1823.32)
125+
label: Last working version (if regression)
126+
validations:
127+
required: false

0 commit comments

Comments
 (0)