Skip to content

Commit

Permalink
Fix the branch syntax for the other tasks as well
Browse files Browse the repository at this point in the history
This is a follow-on to 3fd97e1
  • Loading branch information
shankari committed Aug 20, 2020
1 parent 3fd97e1 commit 5485d6f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/osx-ubuntu-manual-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ name: osx-ubuntu-manual-install
# events but only for the master branch
on:
push:
branches: [ master gis-based-mode-detection ]
branches:
- master
- gis-based-mode-detection
pull_request:
branches: [ master gis-based-mode-detection ]
branches:
- master
- gis-based-mode-detection
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 4 * * 0'
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test-with-manual-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ name: ubuntu-only-test-with-manual-install
# events but only for the master branch
on:
push:
branches: [ master gis-based-mode-detection ]
branches:
- master
- gis-based-mode-detection
pull_request:
branches: [ master gis-based-mode-detection ]
branches:
- master
- gis-based-mode-detection
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 4 * * 0'
Expand Down

0 comments on commit 5485d6f

Please sign in to comment.