1_bug_report.yml

 1name: Bug Report
 2description: |
 3  Use this template for **non-crash-related** bug reports.
 4  Tip: open this issue template from within Zed with the `file bug report` command palette action.
 5labels: ["admin read", "triage", "bug"]
 6body:
 7  - type: checkboxes
 8    attributes:
 9      label: Check for existing issues
10      description: Check the backlog of issues to reduce the chances of creating duplicates; if an issue already exists, place a `+1` (👍) on it.
11      options:
12        - label: Completed
13          required: true
14  - type: textarea
15    attributes:
16      label: Describe the bug / provide steps to reproduce it
17      description: A clear and concise description of what the bug is.
18    validations:
19      required: true
20  - type: textarea
21    id: environment
22    attributes:
23      label: Zed Version and System Specs
24      description: Zed version, release channel, architecture (x86_64 or aarch64), OS (macOS version / Linux distro and version) and RAM amount.
25      placeholder: |
26        <!-- In Zed run `copy system specs into clipboard` from the Zed command palette and paste here. -->
27        <!-- Alternatively spawn `file bug report` and this field will be autopopulated -->
28        <!-- If Zed won't launch, include the equivalent with other relevant details (e.g. video card driver version for display bugs, etc) -->
29        <!-- Zed Version: 0.xxx.x; Channel: Stable, OS: macOS xx.xx, RAM: XXGB, Architecture: x86_64"
30    validations:
31      required: true
32  - type: textarea
33    attributes:
34      label: If applicable, add screenshots or screencasts of the incorrect state / behavior
35      description: Drag images / videos into the text input below
36    validations:
37      required: false
38  - type: textarea
39    attributes:
40      label: If applicable, attach your Zed.log file to this issue.
41      description: |
42        macOS: `~/Library/Logs/Zed/Zed.log`
43        Linux: `~/.local/share/zed/logs/Zed.log` or $XDG_DATA_HOME
44        If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000.
45      value: |
46        <details><summary>Zed.log</summary>
47
48        <!-- Click below this line and paste or drag-and-drop your log-->
49        ```
50
51        ```
52        <!-- Click above this line and paste or drag-and-drop your log--></details>
53    validations:
54      required: false