04_bug_debugger.yml

 1name: Bug Report (Debugger)
 2description: Zed Debugger-Related Bugs
 3type: "Bug"
 4labels: ["debugger"]
 5title: "Debugger: <a short description of the Debugger bug>"
 6body:
 7  - type: textarea
 8    attributes:
 9      label: Summary
10      description: Describe the bug with a one line summary, and provide detailed reproduction steps
11      value: |
12        <!-- Please insert a one line summary of the issue below -->
13        SUMMARY_SENTENCE_HERE
14
15        ### Description
16        <!--  Describe with sufficient detail to reproduce from a clean Zed install. -->
17        Steps to trigger the problem:
18        1.
19        2.
20        3.
21
22        **Expected Behavior**:
23        **Actual Behavior**:
24
25    validations:
26      required: true
27  - type: textarea
28    id: environment
29    attributes:
30      label: Zed Version and System Specs
31      description: 'Open Zed, and in the command palette select "zed: copy system specs into clipboard"'
32      placeholder: |
33        Output of "zed: copy system specs into clipboard"
34    validations:
35      required: true
36
37  - type: textarea
38    attributes:
39      label: If applicable, attach your `Zed.log` file to this issue.
40      description: |
41        From the command palette, run `zed: open log` to see the last 1000 lines.
42        Or run `zed: reveal log in file manager` to reveal the log file itself.
43      value: |
44        <details><summary>Zed.log</summary>
45
46        <!-- Paste your log inside the code block. -->
47        ```log
48
49        ```
50
51        </details>
52    validations:
53      required: false