diff options
| author | FintasticMan <52415484+FintasticMan@users.noreply.github.com> | 2022-05-10 19:19:36 (GMT) |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2022-05-14 10:21:35 (GMT) |
| commit | 8485cdb54deaf5b24827330c8dc4d3e6675c7d72 (patch) | |
| tree | 14c70d22e1a1b8f879e9945528694b70b09e3976 | |
| parent | 4cb07bac5342fd583e23e1643c2e95f649dc9c59 (diff) | |
Only run lv_sim GH Actions on push to develop and master
| -rw-r--r-- | .github/workflows/lv_sim.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lv_sim.yml b/.github/workflows/lv_sim.yml index f054fc0..21b0ceb 100644 --- a/.github/workflows/lv_sim.yml +++ b/.github/workflows/lv_sim.yml @@ -6,9 +6,9 @@ name: Build PineTime LVGL Simulator # When to run this Workflow... on: - # Run on all branches + # Run this Workflow when files are updated (Pushed) in the "master" and "develop" Branch push: - branches: [] + branches: [ master, develop ] # Also run this Workflow when a Pull Request is created or updated in the "master" and "develop" Branch pull_request: |
