From e6d863c61090c5f236657f67d688fafa349a5e55 Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Sat, 28 Nov 2020 19:18:18 +0000 Subject: build(workflows): add each workflow to its own trigger conditions For each workflow, add its path to its own trigger conditions so that it automatically re-triggers for testing purposes whenever it is changed. PR: #443 --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows/build.yml') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc00328..a421c6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,9 +1,11 @@ on: push: paths: + - ".github/workflows/build.yml" - "app/**" pull_request: paths: + - ".github/workflows/build.yml" - "app/**" name: Build -- cgit v1.2.3