ci: drop the validate cron before it disables the gate #236
Workflow file for this run
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: Validate | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| # No schedule. GitHub auto-disables any workflow containing one after 60 | |
| # days of repository inactivity, and a disabled workflow then stops | |
| # answering push and pull_request as well — so the cron meant to catch | |
| # upstream HACS/hassfest rule changes is exactly what removes the gate. | |
| # Both adaptive-lighting validators and adaptive-cover's were lost that | |
| # way; this repo is only still active because it was pushed recently. | |
| jobs: | |
| hacs: | |
| name: HACS | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: HACS validation | |
| uses: hacs/action@main | |
| with: | |
| category: integration | |
| hassfest: | |
| name: Hassfest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Hassfest validation | |
| uses: home-assistant/actions/hassfest@master |