mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-17 01:04:05 +02:00
- 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.
15 lines
284 B
YAML
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
|