mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-05-28 18:43:40 +00:00
Refactor the contribution guidelines to enhance readability and consistency in formatting. Adjusted code blocks and list formatting for better visual structure. Impact: Contributors will find it easier to follow the guidelines when contributing to the project. --- docs(README): update automation examples for better readability Reformatted YAML automation examples in the README to improve clarity and consistency. Indentation and structure were adjusted for better understanding. Impact: Users will have clearer examples for setting up automations with the integration. --- chore(manifest): streamline manifest file formatting Consolidated formatting in the manifest file for consistency. Adjusted the codeowners and requirements sections for a cleaner look. User-Impact: none --- chore(pyproject): enhance project configuration for better linting and testing Updated the pyproject.toml file to improve linting configurations and testing options. Added specific rules for ruff and pytest to align with project standards. User-Impact: none --- chore(manifest_schema): simplify JSON schema for integration manifest Refined the manifest schema by consolidating enum definitions for better readability and maintenance. User-Impact: none --- chore(prettier): add Prettier configuration for consistent code formatting Introduced a Prettier configuration file to standardize code formatting across the project, ensuring consistency in style. User-Impact: none
71 lines
2.5 KiB
YAML
71 lines
2.5 KiB
YAML
---
|
|
name: "Bug report"
|
|
description: "Report a bug with the custom integration"
|
|
labels: ["bug"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: Before you open a new issue, search through the existing issues to see if others have had the same problem.
|
|
- type: input
|
|
attributes:
|
|
label: "Home Assistant version"
|
|
description: "The version of Home Assistant you are using"
|
|
placeholder: "2025.1.0"
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
attributes:
|
|
label: "Integration version"
|
|
description: "The version of this custom integration you are using"
|
|
placeholder: "1.0.0"
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
attributes:
|
|
label: "System Health details"
|
|
description: "Paste the data from the System Health card in Home Assistant (https://www.home-assistant.io/more-info/system-health#github-issues)"
|
|
validations:
|
|
required: false
|
|
- type: checkboxes
|
|
attributes:
|
|
label: Checklist
|
|
options:
|
|
- label: I have enabled debug logging for my installation.
|
|
required: true
|
|
- label: I have filled out the issue template to the best of my ability.
|
|
required: true
|
|
- label: This issue only contains 1 issue (if you have multiple issues, open one issue for each issue).
|
|
required: true
|
|
- label: This issue is not a duplicate issue of any [previous issues](https://github.com/jpawlowski/hass.tibber_prices/issues?q=is%3Aissue+label%3A%22Bug%22+)..
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: "Describe the issue"
|
|
description: "A clear and concise description of what the issue is."
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Reproduction steps
|
|
description: "Without steps to reproduce, it will be hard to fix. It is very important that you fill out this part. Issues without it will be closed."
|
|
value: |
|
|
1.
|
|
2.
|
|
3.
|
|
...
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: "Debug logs"
|
|
description: "To enable debug logs check this https://www.home-assistant.io/integrations/logger/, this **needs** to include _everything_ from startup of Home Assistant to the point where you encounter the issue."
|
|
render: text
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: "Diagnostics dump"
|
|
description: "Drag the diagnostics dump file here. (see https://www.home-assistant.io/integrations/diagnostics/ for info)"
|
|
validations:
|
|
required: false
|