Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.

Commit 067ed60

Browse files
committed
ci(github): add developer bug report template
1 parent 23d1905 commit 067ed60

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Developer Bug Report
2+
description: File a bug report as a developer (issues related to the source code).
3+
title: "[Dev]: "
4+
labels: ["internal", "bug:report", "action:triage"]
5+
6+
assignees:
7+
- ivangabriele
8+
9+
body:
10+
- type: markdown
11+
attributes:
12+
value: Thanks for taking the time to fill out this bug report!
13+
- type: textarea
14+
id: what-happened
15+
attributes:
16+
label: What happened?
17+
description: Add reproduction steps if you can.
18+
value: "1. Ran `make run`\n2. Saw an error\n3. ..."
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: what-i-expected
23+
attributes:
24+
label: What did you expect to happen?
25+
value: "I expected ..."
26+
validations:
27+
required: true
28+
- type: checkboxes
29+
id: terms
30+
attributes:
31+
label: Did you run the latest version of the code?
32+
options:
33+
- label: I ran the lastest version of the code on the main branch.
34+
- type: dropdown
35+
id: os
36+
attributes:
37+
label: OS
38+
description: What operating system are you using?
39+
options:
40+
- Debian, Ubuntu & derivatives
41+
- macOS
42+
- Windows
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: logs
47+
attributes:
48+
label: Relevant log output
49+
description: |
50+
Please copy and paste any relevant log output.
51+
This will be automatically formatted into code, so no need for backticks.
52+
render: shell
53+
- type: checkboxes
54+
id: terms
55+
attributes:
56+
label: Code of Conduct
57+
description: |
58+
By submitting this issue, you agree to follow this project's
59+
[Code of Conduct](https://github.com/ivangabriele/openai-autogen-dev-studio/blob/main/CODE_OF_CONDUCT.md).
60+
options:
61+
- label: I agree to follow this project's Code of Conduct.
62+
required: true

0 commit comments

Comments
 (0)