|
1 | | -name: "Bug report" |
2 | | -description: "Create a report to help us improve" |
3 | | -title: "[BUG] <title>" |
| 1 | +name: Bug Report |
| 2 | +description: Report an issue to help us improve |
| 3 | +title: "Provide a brief, clear description of the bug" |
4 | 4 | labels: ["bug"] |
| 5 | + |
5 | 6 | body: |
6 | | - - type: textarea |
7 | | - id: description |
| 7 | + - type: input |
| 8 | + id: summary |
| 9 | + attributes: |
| 10 | + label: Summary |
| 11 | + description: Brief description of the issue. |
| 12 | + |
| 13 | + - type: dropdown |
| 14 | + id: environment |
8 | 15 | attributes: |
9 | | - label: "Description" |
10 | | - description: "A clear and concise description of what the bug is." |
11 | | - validations: |
12 | | - required: true |
| 16 | + label: Operating System |
| 17 | + options: |
| 18 | + - Windows |
| 19 | + - macOS |
| 20 | + - Linux |
| 21 | + - Other |
| 22 | + |
13 | 23 | - type: textarea |
14 | 24 | id: steps |
15 | 25 | attributes: |
16 | | - label: "Steps to reproduce" |
17 | | - description: "Steps to reproduce the behavior (if applicable)" |
| 26 | + label: Steps to Reproduce |
| 27 | + description: How can we reproduce this bug? |
18 | 28 | placeholder: | |
19 | | - 1. Go to '...' |
20 | | - 2. Click on '....' |
21 | | - 3. Scroll down to '....' |
22 | | - 4. See error |
23 | | - validations: |
24 | | - required: false |
| 29 | + 1. Step one |
| 30 | + 2. Step two |
| 31 | +
|
| 32 | + - type: textarea |
| 33 | + id: expected |
| 34 | + attributes: |
| 35 | + label: Expected Behavior |
| 36 | + placeholder: What should have happened? |
| 37 | + |
| 38 | + - type: textarea |
| 39 | + id: actual |
| 40 | + attributes: |
| 41 | + label: Actual Behavior |
| 42 | + placeholder: What actually happened? |
| 43 | + |
25 | 44 | - type: textarea |
26 | | - id: exceptedbhv |
| 45 | + id: logs |
27 | 46 | attributes: |
28 | | - label: "Excepted behavior" |
29 | | - description: "A clear and concise description of what you expected to happen." |
30 | | - validations: |
31 | | - required: true |
| 47 | + label: Logs / Error Messages |
| 48 | + placeholder: Paste any relevant logs or screenshots. |
| 49 | + |
32 | 50 | - type: textarea |
33 | | - id: screenshots |
| 51 | + id: config |
34 | 52 | attributes: |
35 | | - label: "Screenshots" |
36 | | - description: "If applicable, add screenshots to help explain your problem." |
37 | | - validations: |
38 | | - required: false |
| 53 | + label: Configuration Files |
| 54 | + description: VS Code settings.json / other configs if applicable. |
| 55 | + |
39 | 56 | - type: textarea |
40 | 57 | id: context |
41 | 58 | attributes: |
42 | | - label: "Additional context" |
43 | | - description: "Is there anything else we should know about this bug report?" |
44 | | - validations: |
45 | | - required: false |
| 59 | + label: Additional Context |
| 60 | + placeholder: Any other info? |
0 commit comments