-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
69 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,40 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
validations: | ||
required: true | ||
- type: input | ||
id: places-version | ||
attributes: | ||
label: places Version | ||
validations: | ||
required: true | ||
- type: input | ||
id: ha-version | ||
attributes: | ||
label: Home Assistant Version | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant logs | ||
description: Please copy and paste any relevant logs. This will be automatically formatted into code, so no need for backticks. [How to enable debug logging.](https://github.com/custom-components/places/blob/master/CONTRIBUTING.md#enable-debug-logging-in-home-assistant) | ||
render: shell | ||
- type: textarea | ||
id: additional-details | ||
attributes: | ||
label: Additional Details | ||
description: Anything else we need to know? |
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: true |
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,28 @@ | ||
name: Feature Request | ||
description: Request a new feature or enhancement. | ||
title: "[FR]: " | ||
labels: ["feature request"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
We will evaluate all Feature Requests, but some may not be feasible or aligned with what we want for the integration. | ||
- type: textarea | ||
id: what-do-you-want | ||
attributes: | ||
label: Describe the new feature or enhancement idea | ||
description: The more detail the better | ||
placeholder: What do you want? | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: i-will-implement | ||
attributes: | ||
label: Will you be building this? | ||
options: | ||
- label: I intend to submit a PR to implement this | ||
- type: textarea | ||
id: additional-details | ||
attributes: | ||
label: Additional Details | ||
description: Anything else we need to know? |