Skip to content

Commit 4c485cb

Browse files
authored
Add bug report issue template
This file defines a template for bug reports, including fields for describing the bug, steps to reproduce, expected behavior, and version information.
1 parent 8ae0a84 commit 4c485cb

1 file changed

Lines changed: 56 additions & 0 deletions

File tree

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Bug Report
2+
description: File a bug report
3+
type: "Bug"
4+
body:
5+
- type: textarea
6+
id: what-happened
7+
attributes:
8+
label: Describe the bug
9+
description: A clear and concise description of what the bug is.
10+
validations:
11+
required: true
12+
- type: textarea
13+
id: steps
14+
attributes:
15+
label: To Reproduce
16+
description: Steps to reproduce the behavior.
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: what-expected
21+
attributes:
22+
label: Expected behavior
23+
description: A clear and concise description of what you expected to happen.
24+
- type: input
25+
id: webview-version
26+
attributes:
27+
label: Avalonia WebView version
28+
placeholder: e.g. 12.0.0, 11.4.0
29+
validations:
30+
required: true
31+
- type: input
32+
id: avalonia-version
33+
attributes:
34+
label: Avalonia version
35+
placeholder: e.g. 12.0.0, 11.3.12
36+
validations:
37+
required: true
38+
- type: dropdown
39+
id: os
40+
attributes:
41+
label: OS
42+
multiple: true
43+
options:
44+
- Windows
45+
- macOS
46+
- Linux
47+
- WebAssembly
48+
- Android
49+
- iOS
50+
- type: textarea
51+
id: additional-info
52+
attributes:
53+
label: Additional context
54+
description: |
55+
Add any other context about the problem here.
56+
If applicable, add screenshots to help explain your problem.

0 commit comments

Comments
 (0)