HACS Action #85
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: HACS Action | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| hacs: | |
| runs-on: ubuntu-latest | |
| # The HACS integration is published from the public `fulloch` repo (this | |
| # private dev repo is transferred there via transfer_to_pub_dir.sh). Only | |
| # validate on the public repo — the private one legitimately lacks the | |
| # published repo's topics/description, so HACS validation fails there. | |
| if: github.repository == 'liampetti/fulloch' | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: hacs/action@main | |
| with: | |
| category: integration |