11_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**. The more context you provide, the easier it is to find and fix the problem fast.
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: Zed version and system specs
19      description: |
20        Open the command palette in Zed, then type “zed: copy system specs into clipboard”.
21      placeholder: |
22        Zed: v0.215.0 (Zed Nightly bfe141ea79aa4984028934067ba75c48d99136ae)
23        OS: macOS 15.1
24        Memory: 36 GiB
25        Architecture: aarch64
26    validations:
27      required: true
28  - type: textarea
29    attributes:
30      label: Attach Zed log file
31      description: |
32        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.
33      value: |
34        <details><summary>Zed.log</summary>
35
36        <!-- Paste your log inside the code block. -->
37        ```log
38
39        ```
40
41        </details>
42    validations:
43      required: false