Skip to content

Commit

Permalink
Add Issue Templates (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
Snuffy2 authored Jan 16, 2025
1 parent 60d5795 commit 3a603f3
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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?
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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?

0 comments on commit 3a603f3

Please sign in to comment.