adaptive-lighting/.github/workflows/hassfest.yaml
Casey Romkes 262bfa5e17 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.
2026-06-09 14:21:27 +02:00

15 lines
284 B
YAML

name: Validate with hassfest
on:
push:
branches: [main, master]
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
validate_hassfest:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v6.0.2"
- uses: home-assistant/actions/hassfest@master