-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Ensure issues are created using templates (#900)
Co-authored-by: Alan Tse <[email protected]>
- Loading branch information
1 parent
57259d9
commit 9b09753
Showing
2 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Powerwall Issue | ||
description: Create a report to help us improve | ||
title: "Powerwall Issue: " | ||
labels: ["triage", "powerwall"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Before you open a new issue, search through the existing open issues and closed issues to see if others have had the same problem. | ||
options: | ||
- label: I have searched both the existing open issues & recently closed issues and did not find a duplicate of this issue. | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Issues not containing the minimum requirements will be closed: | ||
- Issues without a description (using the header is not good enough) will be closed. | ||
- Issues without debug logging will be closed. | ||
- type: input | ||
id: version_hacs | ||
attributes: | ||
label: Version of the Tesla component | ||
description: You can find this under HACS -> Integrations -> Tesla. If you are not using the newest version, download and try that before opening an issue | ||
placeholder: ex. v3.19.3 | ||
validations: | ||
required: true | ||
- type: input | ||
id: version_tesla | ||
attributes: | ||
label: Version of the Powerwall Gateway software | ||
description: Open the Tesla app -> Select powerwall -> Settings -> My Home Info -> Powerwall Gateway Version | ||
placeholder: ex. 23.44.0 eb113390 | ||
validations: | ||
required: true | ||
- type: input | ||
id: model_powerwall | ||
attributes: | ||
label: Model | ||
description: The model of the Powerwall | ||
placeholder: ex. 2 | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Current Behavior | ||
description: A concise description of what you're experiencing. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Debug logs | ||
description: Enable the debug logs ([In Home Assistant](https://my.home-assistant.io/redirect/integration/?domain=tesla_custom) & click `Enable debug logging`) | ||
render: true | ||
placeholder: | | ||
Your logs here | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Links? References? Anything that will give us more context about the issue you are encountering | ||
validations: | ||
required: false |