| 123456789101112131415161718 |
- name: Validate with HACS
- on:
- push:
- pull_request:
- schedule:
- - cron: '0 0 * * *'
- jobs:
- validate:
- runs-on: 'ubuntu-latest'
- steps:
- - uses: 'actions/checkout@v2'
- - name: HACS validation
- uses: 'hacs/integration/action@main'
- with:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- CATEGORY: 'integration'
|