diff options
author | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-11-28 19:18:18 +0000 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-11-28 16:59:38 -0500 |
commit | e6d863c61090c5f236657f67d688fafa349a5e55 (patch) | |
tree | e6ed3b2c454cfe711cb23b66e564eb5d0085ed13 /.github/workflows/test.yml | |
parent | 307fd5d2508e33499198eaebc070e183c3d77230 (diff) |
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
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d3521e9..8e66ab7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,10 +1,12 @@ on: push: paths: + - ".github/workflows/test.yml" - "app/tests/**" - "app/src/**" pull_request: paths: + - ".github/workflows/test.yml" - "app/tests/**" - "app/src/**" |