Skip to content

Commit 66d990b

Browse files
authored
Update bug_report.yml
1 parent e01ce61 commit 66d990b

File tree

1 file changed

+80
-37
lines changed

1 file changed

+80
-37
lines changed
Lines changed: 80 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,98 @@
1-
name: Bug Report
2-
description: File a bug report
3-
title: "[Bug]: "
4-
labels: ["bug", "triage"]
5-
assignees:
6-
- octocat
1+
name: Bug report
2+
description: Create a report to help us improve CrewAI
3+
title: "[BUG]"
4+
labels: ["bug"]
5+
assignees: []
76
body:
8-
- type: markdown
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Description
11+
description: Provide a clear and concise description of what the bug is.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: steps-to-reproduce
17+
attributes:
18+
label: Steps to Reproduce
19+
description: Provide a step-by-step process to reproduce the behavior.
20+
placeholder: |
21+
1. Go to '...'
22+
2. Click on '....'
23+
3. Scroll down to '....'
24+
4. See error
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: expected-behavior
930
attributes:
10-
value: |
11-
Thanks for taking the time to file a bug report!
12-
13-
**Important:** Please fill out all fields below. Reports with missing information may be closed without investigation.
31+
label: Expected behavior
32+
description: A clear and concise description of what you expected to happen.
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: screenshots-code
38+
attributes:
39+
label: Screenshots/Code snippets
40+
description: If applicable, add screenshots or code snippets to help explain your problem.
41+
validations:
42+
required: true
43+
1444
- type: input
15-
id: title
45+
id: os
1646
attributes:
17-
label: Bug Title
18-
description: Provide a clear and concise title for this bug.
19-
placeholder: e.g., "App crashes when uploading large files"
47+
label: Operating System
48+
description: e.g., Ubuntu 20.04, macOS Catalina, Windows 10
2049
validations:
2150
required: true
51+
2252
- type: input
23-
id: contact
53+
id: python-version
2454
attributes:
25-
label: Contact Details
26-
description: How can we get in touch with you if we need more info?
27-
placeholder: ex. [email protected]
55+
label: Python Version
56+
description: e.g., 3.8, 3.9, 3.10
2857
validations:
2958
required: true
59+
60+
- type: input
61+
id: crewai-version
62+
attributes:
63+
label: crewAI Version
64+
description: e.g., 0.30.11
65+
validations:
66+
required: true
67+
68+
- type: input
69+
id: crewai-tools-version
70+
attributes:
71+
label: crewAI Tools Version
72+
description: e.g., 0.2.6
73+
validations:
74+
required: true
75+
3076
- type: textarea
31-
id: what-happened
77+
id: logs
3278
attributes:
33-
label: What happened?
34-
description: Please provide a clear and concise description of the bug. Include what you were doing, what you expected to happen, and what actually happened.
35-
placeholder: I was doing [A], expected [B] to happen, but [C] occurred instead.
79+
label: Logs
80+
description: Include relevant logs or error messages if applicable.
3681
validations:
3782
required: true
38-
- type: dropdown
39-
id: version
83+
84+
- type: textarea
85+
id: possible-solution
4086
attributes:
41-
label: Version
42-
description: What version of our software are you running?
43-
options:
44-
- 1.0.2 (Default)
45-
- 1.0.3 (Edge)
87+
label: Possible Solution
88+
description: Have a solution in mind? Please suggest it here, or write "None".
4689
validations:
4790
required: true
48-
- type: checkboxes
49-
id: terms
91+
92+
- type: textarea
93+
id: additional-context
5094
attributes:
51-
label: Code of Conduct
52-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com/coc)
53-
options:
54-
- label: I agree to follow this project's Code of Conduct
55-
required: true
95+
label: Additional context
96+
description: Add any other context about the problem here.
97+
validations:
98+
required: true

0 commit comments

Comments
 (0)