From 720f86a05a366ceb7dce5293205102a7b4d055d5 Mon Sep 17 00:00:00 2001 From: tomaae <23486452+tomaae@users.noreply.github.com> Date: Sat, 18 Apr 2020 03:32:20 +0200 Subject: [PATCH] updated hassfest workflow to trigger only on integration code change --- .github/workflows/hassfest.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/hassfest.yml b/.github/workflows/hassfest.yml index 440e454..3c67f54 100644 --- a/.github/workflows/hassfest.yml +++ b/.github/workflows/hassfest.yml @@ -2,7 +2,13 @@ name: Validate with hassfest on: push: + paths: + - 'custom_components/**' + - 'tests/**' pull_request: + paths: + - 'custom_components/**' + - 'tests/**' schedule: - cron: '0 0 * * *'