|
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: [] |
7 | 6 | 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 |
9 | 30 | 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 | + |
14 | 44 | - type: input |
15 | | - id: title |
| 45 | + id: os |
16 | 46 | 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 |
20 | 49 | validations: |
21 | 50 | required: true |
| 51 | + |
22 | 52 | - type: input |
23 | | - id: contact |
| 53 | + id: python-version |
24 | 54 | 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 |
28 | 57 | validations: |
29 | 58 | 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 | + |
30 | 76 | - type: textarea |
31 | | - id: what-happened |
| 77 | + id: logs |
32 | 78 | 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. |
36 | 81 | validations: |
37 | 82 | required: true |
38 | | - - type: dropdown |
39 | | - id: version |
| 83 | + |
| 84 | + - type: textarea |
| 85 | + id: possible-solution |
40 | 86 | 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". |
46 | 89 | validations: |
47 | 90 | required: true |
48 | | - - type: checkboxes |
49 | | - id: terms |
| 91 | + |
| 92 | + - type: textarea |
| 93 | + id: additional-context |
50 | 94 | 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