|
| 1 | +name: Bug report |
| 2 | +description: Report a defect in Lore |
| 3 | +labels: [bug, needs-triage] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Please search [existing issues](https://github.com/EpicGames/lore/issues) first. |
| 9 | + If the error came from a Lore server you don't operate, report it to that |
| 10 | + server's operator; this tracker covers the Lore client and self-hosted server. |
| 11 | + - type: input |
| 12 | + id: version |
| 13 | + attributes: |
| 14 | + label: Lore version |
| 15 | + description: Paste the output of `lore --version`. |
| 16 | + placeholder: lore 0.8.6+3201 |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + - type: dropdown |
| 20 | + id: install |
| 21 | + attributes: |
| 22 | + label: Installation method |
| 23 | + description: > |
| 24 | + If you built from source, include your Rust toolchain (`rustc --version`) |
| 25 | + and any custom `RUSTFLAGS` in the reproduction steps -- a custom `RUSTFLAGS` |
| 26 | + overrides the flags in `.cargo/config.toml` and is a known source of build failures. |
| 27 | + options: |
| 28 | + - Prebuilt release binary |
| 29 | + - Built from source |
| 30 | + - MSI installer (Windows) |
| 31 | + validations: |
| 32 | + required: true |
| 33 | + - type: dropdown |
| 34 | + id: os |
| 35 | + attributes: |
| 36 | + label: Operating system / architecture |
| 37 | + description: Where did you hit the bug? |
| 38 | + options: |
| 39 | + - Linux -- x86_64 |
| 40 | + - Linux -- aarch64 |
| 41 | + - macOS -- aarch64 |
| 42 | + - Windows -- x86_64 |
| 43 | + - Other |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + - type: textarea |
| 47 | + id: repro |
| 48 | + attributes: |
| 49 | + label: Steps to reproduce |
| 50 | + description: > |
| 51 | + Exact commands and repository state needed to trigger the bug. Helpful |
| 52 | + detail: does it reproduce on a clean repo and on the latest release? For |
| 53 | + sync/push/clone problems, note your network environment (VPN, proxy, |
| 54 | + firewall). On Linux aarch64, include your CPU model (`lscpu`) -- prebuilt |
| 55 | + aarch64 binaries target AWS Graviton. |
| 56 | + placeholder: | |
| 57 | + 1. lore clone <url> |
| 58 | + 2. lore stage . |
| 59 | + 3. ... |
| 60 | + validations: |
| 61 | + required: true |
| 62 | + - type: textarea |
| 63 | + id: expected |
| 64 | + attributes: |
| 65 | + label: Expected vs actual behavior |
| 66 | + description: What did you expect to happen, and what happened instead? |
| 67 | + validations: |
| 68 | + required: false |
| 69 | + - type: dropdown |
| 70 | + id: component |
| 71 | + attributes: |
| 72 | + label: Component |
| 73 | + description: > |
| 74 | + Which side do you believe is at fault? If you pick Server or |
| 75 | + Both / unsure, please also fill in Server context below. |
| 76 | + options: |
| 77 | + - Client (CLI) |
| 78 | + - Server |
| 79 | + - Both / unsure |
| 80 | + validations: |
| 81 | + required: false |
| 82 | + - type: textarea |
| 83 | + id: server |
| 84 | + attributes: |
| 85 | + label: Server context |
| 86 | + description: > |
| 87 | + Server bugs only -- server version, how it's deployed (Docker, compose, |
| 88 | + bare metal), the storage backend (local disk, S3, other), and your |
| 89 | + `local.toml` server config. Redact certificate paths, credentials, and |
| 90 | + anything else sensitive before posting. |
| 91 | + validations: |
| 92 | + required: false |
| 93 | + - type: input |
| 94 | + id: regression |
| 95 | + attributes: |
| 96 | + label: Regression? |
| 97 | + description: Did this work in an earlier Lore version? If so, which one? |
| 98 | + placeholder: worked in 0.7.x |
| 99 | + validations: |
| 100 | + required: false |
| 101 | + - type: textarea |
| 102 | + id: logs |
| 103 | + attributes: |
| 104 | + label: Relevant logs or output |
| 105 | + description: > |
| 106 | + Rerun the failing command with `--debug`; set `RUST_BACKTRACE=1` for |
| 107 | + crashes. Log files live in the directory printed by `lore logfile info`. |
| 108 | + Logs can contain repository paths and commit messages -- redact anything |
| 109 | + sensitive before posting. This is rendered as code automatically. |
| 110 | + render: shell |
| 111 | + validations: |
| 112 | + required: false |
0 commit comments