2.crash-report.yml

 1name: Report a crash
 2description: Zed is crashing or freezing or hanging.
 3type: Crash
 4labels: "state:needs triage"
 5body:
 6  - type: textarea
 7    attributes:
 8      label: Reproduction steps
 9      description: A step-by-step description of how to reproduce the crash from a **clean Zed install**. **Be verbose**. **Issues with insufficient detail may be summarily closed**.
10      placeholder: |
11        1. Start Zed
12        2. Perform an action
13        3. Zed crashes
14    validations:
15      required: true
16  - type: textarea
17    attributes:
18      label: Current vs. Expected behavior
19      description: |
20        Go into depth about what actions you’re performing in Zed to trigger the crash. If Zed crashes before it loads any windows, make sure to mention that. Again, **be verbose**.
21
22        **Skipping this/failure to provide complete information will result in the issue being closed.**
23      placeholder: "Based on my reproduction steps above, when I perform said action, I expect this to happen, but instead Zed crashes."
24    validations:
25      required: true
26  - type: textarea
27    attributes:
28      label: Zed version and system specs
29      description: |
30        Open the command palette in Zed, then type “zed: copy system specs into clipboard”. **Skipping this/failure to provide complete information will result in the issue being closed**.
31      placeholder: |
32        Zed: v0.215.0 (Zed Nightly bfe141ea79aa4984028934067ba75c48d99136ae)
33        OS: macOS 15.1
34        Memory: 36 GiB
35        Architecture: aarch64
36    validations:
37      required: true
38  - type: textarea
39    attributes:
40      label: If applicable, attach your Zed log file to this issue
41      description: |
42        Open the command palette in Zed, then type `zed: open log` to see the last 1000 lines. Or type `zed: reveal log in file manager` in the command palette 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