From 023ac8d71831daea018805edf7ceb75cf532e5a5 Mon Sep 17 00:00:00 2001 From: Matthijs Draijer Date: Wed, 29 Nov 2023 21:59:33 +0100 Subject: [PATCH 1/3] Create validate.yaml --- .github/workflows/validate.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/validate.yaml diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml new file mode 100644 index 0000000..c422ec3 --- /dev/null +++ b/.github/workflows/validate.yaml @@ -0,0 +1,18 @@ +name: Validate + +on: + push: + pull_request: + schedule: + - cron: "0 0 * * *" + workflow_dispatch: + +jobs: + validate-hacs: + runs-on: "ubuntu-latest" + steps: + - uses: "actions/checkout@v3" + - name: HACS validation + uses: "hacs/action@main" + with: + category: "integration" From aa316b325936f02eecd546dff6b436092c819472 Mon Sep 17 00:00:00 2001 From: Matthijs Draijer Date: Thu, 30 Nov 2023 11:11:29 +0100 Subject: [PATCH 2/3] Create hassfest.yaml --- .github/workflows/hassfest.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/hassfest.yaml diff --git a/.github/workflows/hassfest.yaml b/.github/workflows/hassfest.yaml new file mode 100644 index 0000000..07d1dda --- /dev/null +++ b/.github/workflows/hassfest.yaml @@ -0,0 +1,14 @@ +name: Validate with hassfest + +on: + push: + pull_request: + schedule: + - cron: "0 0 * * *" + +jobs: + validate: + runs-on: "ubuntu-latest" + steps: + - uses: "actions/checkout@v3" + - uses: home-assistant/actions/hassfest@master From 13cfa12ef8a0ef310e4482c4c81d8d4fb4a006ca Mon Sep 17 00:00:00 2001 From: Matthijs Draijer Date: Thu, 30 Nov 2023 14:26:56 +0100 Subject: [PATCH 3/3] Update validate.yaml --- .github/workflows/validate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index c422ec3..f35f1d7 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -1,4 +1,4 @@ -name: Validate +name: HACS validation on: push: