diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-07-07 18:41:31 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-08-24 19:47:56 +0200 |
| commit | ec99201cce87da30f0ffdda57d78853001a34a64 (patch) | |
| tree | c52a483939003d079e48e8520b69d48fbf139183 | |
| parent | 67aad0017f761133abb05270293c4afad7ecffd5 (diff) | |
Run CI only if necessary
This pull request selectively enables the build workflows for the three
subproject based on the changed files in the commit.
| -rw-r--r-- | .github/workflows/frontend.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/simulator.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/web-server.yml | 5 |
3 files changed, 12 insertions, 3 deletions
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 39910bc8..ec4a7e71 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -1,6 +1,9 @@ name: Frontend -on: [push] +on: + push: + paths: + - 'frontend/*' defaults: run: diff --git a/.github/workflows/simulator.yml b/.github/workflows/simulator.yml index 096e70c5..887d4af6 100644 --- a/.github/workflows/simulator.yml +++ b/.github/workflows/simulator.yml @@ -1,6 +1,9 @@ name: Simulator -on: [push] +on: + push: + paths: + - 'simulator/*' defaults: run: diff --git a/.github/workflows/web-server.yml b/.github/workflows/web-server.yml index 1ba2b6cd..6f14f97b 100644 --- a/.github/workflows/web-server.yml +++ b/.github/workflows/web-server.yml @@ -1,6 +1,9 @@ name: Web server -on: [push] +on: + push: + paths: + - 'web-server/*' defaults: run: |
