- manifest.json documentation/issue_tracker → GitHub (where HACS users land) - README install instructions → `pip install omni-pca` (now on PyPI) - pyproject.toml URLs → Repository / Issues / Changelog / Documentation - custom_components README → HACS default-catalog install flow - .github/workflows/validate.yml: hacs/action + hassfest on push/PR/weekly Library remains importable from PyPI; integration tracks the same release tag.
27 lines
496 B
YAML
27 lines
496 B
YAML
name: Validate
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
schedule:
|
|
- cron: "0 4 * * 1" # weekly Monday 04:00 UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
hacs:
|
|
name: HACS validation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: hacs/action@main
|
|
with:
|
|
category: integration
|
|
|
|
hassfest:
|
|
name: Hassfest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: home-assistant/actions/hassfest@master
|