Skip to content

Commit

Permalink
Adding image-push-merge branch to automated CI/CD tests
Browse files Browse the repository at this point in the history
This ensures, the branch I'm working on (image-push-merge) will run the tests in my personal repo's workflow on pushing code to origin as well.
This happens once a PR is created, but not for other branches.
  • Loading branch information
Mahadik, Mukul Chandrakant authored and Mahadik, Mukul Chandrakant committed Apr 30, 2024
1 parent e778b3f commit 21ec54c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-with-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ name: test-with-docker
# events but only for the master branch
on:
push:
branches: [ master ]
branches: [ master, image-push-merge]
pull_request:
branches: [ master ]
branches: [ master, image-push-merge]
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 4 * * 0'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-with-manual-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ on:
branches:
- master
- gis-based-mode-detection
- image-push-merge
pull_request:
branches:
- master
- gis-based-mode-detection
- image-push-merge
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 4 * * 0'
Expand Down

0 comments on commit 21ec54c

Please sign in to comment.