Fix HACS validation errors by updating hacs.json and manifest.json #25
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR addresses the CI/CD pipeline failures caused by HACS validation errors related to the hacs.json and manifest.json files. The following changes have been made to comply with the latest HACS requirements:
Changes made
Updated hacs.json:
Removed Invalid Keys:
Removed the domains, country, and homeassistant keys, which are not allowed in hacs.json.
Added Required Keys:
Added "content_in_root": false to indicate that the integration is located in a subdirectory.
Added "render_readme": true to enable rendering of the README in HACS.
Updated manifest.json:
Added Missing Key:
Added the issue_tracker key with the URL to the repository's issues page.
Reason for Changes
HACS Validation Errors: The CI/CD pipeline was failing due to invalid keys in hacs.json and a missing issue_tracker key in manifest.json.
Compliance with HACS Requirements: Updating these files ensures compliance with the latest HACS guidelines and resolves the validation errors.
Fixes issue #22