adaptive-lighting/.github/workflows/validate.yml
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

18 lines
320 B
YAML

name: Validate
on:
push:
branches: [main, master]
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
validate_hacs:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v6"
- name: HACS validation
uses: "hacs/action@main"
with:
category: "integration"