Skip to content

Commit f0866dd

Browse files
authored
Enable repo issues (#762)
1 parent 8669255 commit f0866dd

File tree

2 files changed

+105
-6
lines changed

2 files changed

+105
-6
lines changed
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
name: Bug Report
2+
description: Report a bug or issue with the ESPHome Dashboard
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
This issue form is for reporting bugs with the ESPHome Builder / Dashboard / Frontend only!
8+
9+
If you have a feature request or enhancement, please [request them here instead][fr].
10+
11+
If your issue is related to compilation or validation failing, please search for or
12+
open an issue in the main [ESPHome repository][esphome-issues] instead.
13+
14+
[fr]: https://github.com/orgs/esphome/discussions
15+
[esphome-issues]: https://github.com/esphome/esphome/issues
16+
17+
- type: markdown
18+
attributes:
19+
value: |
20+
## Environment
21+
- type: input
22+
id: version
23+
attributes:
24+
label: Version
25+
description: What version of the ESPHome Builder / Dashboard are you running?
26+
placeholder: 2025.6.3
27+
validations:
28+
required: true
29+
- type: dropdown
30+
validations:
31+
required: true
32+
id: installation
33+
attributes:
34+
label: What type of installation are you using?
35+
options:
36+
- Home Assistant Add-on
37+
- Docker
38+
- pip
39+
- type: input
40+
id: browser
41+
attributes:
42+
label: Browser
43+
description: What browser are you using?
44+
placeholder: e.g. Chrome, Firefox, Safari
45+
validations:
46+
required: true
47+
48+
- type: markdown
49+
attributes:
50+
value: |
51+
## Details
52+
- type: textarea
53+
id: what-happened
54+
attributes:
55+
label: What happened?
56+
description: A clear and concise description of what the bug is.
57+
placeholder: Tell us what you see!
58+
validations:
59+
required: true
60+
- type: textarea
61+
id: reproduction-steps
62+
attributes:
63+
label: How to reproduce
64+
description: Steps to reproduce the behavior.
65+
placeholder: |
66+
1. Go to '...'
67+
2. Click on '....'
68+
3. Scroll down to '....'
69+
4. See error
70+
validations:
71+
required: true
72+
- type: textarea
73+
id: expected-behavior
74+
attributes:
75+
label: Expected behavior
76+
description: A clear and concise description of what you expected to happen.
77+
validations:
78+
required: true
79+
80+
- type: textarea
81+
id: logs
82+
attributes:
83+
label: Relevant log output
84+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
85+
render: shell
86+
- type: textarea
87+
id: screenshots
88+
attributes:
89+
label: Screenshots
90+
description: If applicable,

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Issue Tracker
4-
url: https://github.com/esphome/issues
5-
about: Please create bug reports in the dedicated issue tracker.
6-
- name: Feature Request Tracker
7-
url: https://github.com/esphome/feature-requests
3+
- name: Report an issue with ESPHome
4+
url: https://github.com/esphome/esphome/issues/new/choose
5+
about: Report an issue with ESPHome.
6+
- name: Report an issue with the ESPHome documentation
7+
url: https://github.com/esphome/esphome-docs/issues/new/choose
8+
about: Report an issue with the ESPHome documentation.
9+
- name: Report an issue with the ESPHome web server
10+
url: https://github.com/esphome/esphome-webserver/issues/new/choose
11+
about: Report an issue with the ESPHome web server.
12+
- name: Report an issue with the ESPHome API client
13+
url: https://github.com/esphome/aioesphomeapi/issues/new/choose
14+
about: Report an issue with the ESPHome API client.
15+
- name: Make a Feature Request
16+
url: https://github.com/orgs/esphome/discussions
817
about: Please create feature requests in the dedicated feature request tracker.
918
- name: Frequently Asked Question
1019
url: https://esphome.io/guides/faq.html
11-
about: Please view the FAQ for common questions and what to include in a bug report.
20+
about: Please view the FAQ for common questions and what to include in a bug report.

0 commit comments

Comments
 (0)