Skip to content

Commit 5e90145

Browse files
authored
chore: add bug report issue template
Add YAML-based bug report issue template matching Aurelius format with Claudius-specific browser field.
1 parent 25650b6 commit 5e90145

1 file changed

Lines changed: 93 additions & 0 deletions

File tree

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
name: Bug Report
2+
description: Report a bug or unexpected behavior
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to report a bug! Please fill out the form below.
10+
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: Description
15+
description: A clear and concise description of the bug.
16+
placeholder: Describe the bug...
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: steps-to-reproduce
22+
attributes:
23+
label: Steps to Reproduce
24+
description: Steps to reproduce the behavior.
25+
placeholder: |
26+
1. Embed widget on page with '...'
27+
2. Click '...'
28+
3. See error
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: expected-behavior
34+
attributes:
35+
label: Expected Behavior
36+
description: What you expected to happen.
37+
placeholder: Describe the expected behavior...
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
id: actual-behavior
43+
attributes:
44+
label: Actual Behavior
45+
description: What actually happened.
46+
placeholder: Describe what actually happened...
47+
validations:
48+
required: true
49+
50+
- type: input
51+
id: browser
52+
attributes:
53+
label: Browser
54+
description: e.g. Chrome 120, Firefox 121, Safari 17.2
55+
placeholder: Chrome 120
56+
validations:
57+
required: true
58+
59+
- type: input
60+
id: os
61+
attributes:
62+
label: Operating System
63+
description: e.g. Windows 11, macOS 14.3, Ubuntu 22.04
64+
placeholder: Windows 11
65+
validations:
66+
required: true
67+
68+
- type: input
69+
id: node-version
70+
attributes:
71+
label: Node.js Version
72+
description: Output of `node --version`
73+
placeholder: v20.11.0
74+
validations:
75+
required: true
76+
77+
- type: input
78+
id: pnpm-version
79+
attributes:
80+
label: pnpm Version
81+
description: Output of `pnpm --version`
82+
placeholder: 9.0.0
83+
validations:
84+
required: true
85+
86+
- type: textarea
87+
id: screenshots
88+
attributes:
89+
label: Screenshots
90+
description: If applicable, add screenshots to help explain the problem. Drag and drop images here.
91+
placeholder: Drag and drop screenshots here...
92+
validations:
93+
required: false

0 commit comments

Comments
 (0)