Skip to content

Commit 3cc0077

Browse files
authored
Run CI on master and develop branch
The documentation https://github.com/JF002/InfiniTime/blob/develop/doc/contribute.md#how-to-submit-a-pull-request- tells us to make pull requests against `develop` branch. Update the CI to run on those pull requests to have a check if the PR breaks something unintentionally.
1 parent 6f9f0e8 commit 3cc0077

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ name: Build PineTime Firmware
99
# When to run this Workflow...
1010
on:
1111

12-
# Run this Workflow when files are updated (Pushed) in the "master" Branch
12+
# Run this Workflow when files are updated (Pushed) in the "master" and "develop" Branch
1313
push:
14-
branches: [ master ]
14+
branches: [ master, develop ]
1515

16-
# Also run this Workflow when a Pull Request is created or updated in the "master" Branch
16+
# Also run this Workflow when a Pull Request is created or updated in the "master" and "develop" Branch
1717
pull_request:
18-
branches: [ master ]
18+
branches: [ master, develop ]
1919

2020
# Steps to run for the Workflow
2121
jobs:

0 commit comments

Comments
 (0)