Cron actions 16:30 every 4 days #350
This file contains 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: "Cron actions 16:30 every 4 days" | |
on: | |
schedule: | |
- cron: '30 16 */4 * *' | |
jobs: | |
validate-hassfest: | |
name: With hassfest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: "Update manifest.json" | |
run: | | |
python3 ${{ github.workspace }}/manage/update_manifest.py | |
- name: Hassfest validation | |
uses: home-assistant/actions/hassfest@master | |
validate-hacs: | |
name: With HACS action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: "Update manifest.json" | |
run: | | |
python3 ${{ github.workspace }}/manage/update_manifest.py | |
- name: HACS Validation | |
uses: hacs/action@main | |
with: | |
category: integration | |
comment: False |