diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2021-09-14 23:38:42 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-14 23:38:42 +0300 |
| commit | 93d240a23b1071efd0ac4ecba986f98bc1dae2a4 (patch) | |
| tree | 920aa5de248719dbac17dd0e3bcfb6e9c1bcc42a /.github/workflows/main.yml | |
| parent | 40765f117347f4a4fc6cc4d2c4e46b1923a18fbb (diff) | |
| parent | 3eb73774a39e255cd4b5de76441a59f1525a989c (diff) | |
Merge branch 'develop' into disable_notif_only
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4744eaef..bd24359a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,13 +9,13 @@ name: Build PineTime Firmware # When to run this Workflow... on: - # Run this Workflow when files are updated (Pushed) in the "master" Branch + # Run this Workflow when files are updated (Pushed) in the "master" and "develop" Branch push: - branches: [ master ] + branches: [ master, develop ] - # Also run this Workflow when a Pull Request is created or updated in the "master" Branch + # Also run this Workflow when a Pull Request is created or updated in the "master" and "develop" Branch pull_request: - branches: [ master ] + branches: [ master, develop ] # Steps to run for the Workflow jobs: |
