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