mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-16 00:34:04 +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.
18 lines
320 B
YAML
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"
|