bug_report.yml (2275B)
1 name: Bug Report 2 description: Report a bug with the in-lite integration 3 title: "[Bug]: " 4 labels: ["bug"] 5 body: 6 - type: markdown 7 attributes: 8 value: | 9 Thanks for taking the time to report a bug! Please fill out the form below. 10 Search [existing issues](https://github.com/bbruenings/ha-inlite/issues) before opening a new one. 11 12 - type: textarea 13 id: description 14 attributes: 15 label: Describe the bug 16 description: A clear and concise description of what the bug is. 17 placeholder: What went wrong? 18 validations: 19 required: true 20 21 - type: textarea 22 id: reproduction 23 attributes: 24 label: Steps to reproduce 25 description: Steps to reproduce the behavior. 26 placeholder: | 27 1. Go to Settings → Devices & Services 28 2. Click on in-lite integration 29 3. ... 30 validations: 31 required: true 32 33 - type: textarea 34 id: expected 35 attributes: 36 label: Expected behavior 37 description: What did you expect to happen? 38 validations: 39 required: true 40 41 - type: input 42 id: ha-version 43 attributes: 44 label: Home Assistant version 45 placeholder: "2025.3.0" 46 validations: 47 required: true 48 49 - type: input 50 id: integration-version 51 attributes: 52 label: Integration version 53 description: Found in HACS or in manifest.json 54 placeholder: "0.2.0" 55 validations: 56 required: true 57 58 - type: dropdown 59 id: ble-adapter 60 attributes: 61 label: Bluetooth adapter type 62 options: 63 - Built-in (laptop/SBC) 64 - USB dongle 65 - ESPHome Bluetooth Proxy 66 - Other 67 validations: 68 required: true 69 70 - type: textarea 71 id: logs 72 attributes: 73 label: Debug logs 74 description: | 75 Please provide relevant logs. Enable debug logging by adding this to `configuration.yaml`: 76 ```yaml 77 logger: 78 logs: 79 custom_components.inlite: debug 80 inlite_ble: debug 81 ``` 82 render: text 83 validations: 84 required: false 85 86 - type: textarea 87 id: additional 88 attributes: 89 label: Additional context 90 description: Any other relevant information (screenshots, hardware details, etc.). 91 validations: 92 required: false