From 262bfa5e17d64b51362fad67dfada6690cd33bde Mon Sep 17 00:00:00 2001 From: Casey Romkes Date: Tue, 9 Jun 2026 14:21:27 +0200 Subject: [PATCH] fix hassfest: drop invalid 'homeassistant' manifest key; run validation on main - manifest.json: remove the 'homeassistant' key (not a valid manifest key; the min HA version lives in hacs.json). Verified hassfest-clean locally. - validate.yml / hassfest.yaml: trigger on push to main (default branch) too, not only master, so CI actually runs. --- .github/workflows/hassfest.yaml | 2 +- .github/workflows/validate.yml | 2 +- custom_components/adaptive_lighting/manifest.json | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/hassfest.yaml b/.github/workflows/hassfest.yaml index b063de53..424e7cfb 100644 --- a/.github/workflows/hassfest.yaml +++ b/.github/workflows/hassfest.yaml @@ -2,7 +2,7 @@ name: Validate with hassfest on: push: - branches: [master] + branches: [main, master] pull_request: schedule: - cron: "0 0 * * *" diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 3fa46b4e..12183f19 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -2,7 +2,7 @@ name: Validate on: push: - branches: [master] + branches: [main, master] pull_request: schedule: - cron: "0 0 * * *" diff --git a/custom_components/adaptive_lighting/manifest.json b/custom_components/adaptive_lighting/manifest.json index eb76f667..cd6cec17 100644 --- a/custom_components/adaptive_lighting/manifest.json +++ b/custom_components/adaptive_lighting/manifest.json @@ -5,7 +5,6 @@ "config_flow": true, "dependencies": ["light"], "documentation": "https://github.com/CaseyRo/adaptive-lighting#readme", - "homeassistant": "2025.1.0", "iot_class": "calculated", "issue_tracker": "https://github.com/CaseyRo/adaptive-lighting/issues", "requirements": ["ulid-transform"],