From 8b75c40522a0025f0b4a2e4d0b6bf2c897552b21 Mon Sep 17 00:00:00 2001 From: Marc Sygrove Date: Sat, 4 Mar 2023 22:22:42 +0000 Subject: [PATCH] changed the validation workflow back again --- .github/workflows/validate.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 8c6d0b6..3c7391d 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -1,18 +1,21 @@ -name: Validate +name: 'Validate HACS' on: push: + branches: + - master pull_request: - schedule: - - cron: "0 0 * * *" - workflow_dispatch: + branches: + - master + - dev jobs: - validate-hacs: - runs-on: "ubuntu-latest" + validate: + runs-on: 'ubuntu-latest' steps: - - uses: "actions/checkout@v2" + - uses: 'actions/checkout@v2' - name: HACS validation - uses: "hacs/action@main" + uses: 'hacs/integration/action@master' with: - category: "plugin" \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CATEGORY: 'plugin' \ No newline at end of file