From 047a859c99fdc56acc6c449cee57e7569c1f75ac Mon Sep 17 00:00:00 2001 From: dentra Date: Thu, 11 Jul 2024 18:46:57 +0300 Subject: [PATCH] add hacs validation workflows #8 --- .github/workflows/validate.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/validate.yml diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000..e1aec6e --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,23 @@ +name: Validate + +on: + push: + pull_request: + schedule: + - cron: "0 0 * * *" + +jobs: + validate-hacs: + name: HACS Action + runs-on: "ubuntu-latest" + steps: + - name: HACS Action + uses: "hacs/action@main" + with: + category: integration + + validate-hassfest: + runs-on: ubuntu-latest + steps: + - uses: "actions/checkout@v4" + - uses: "home-assistant/actions/hassfest@master"