Merge pull request #522 from input-output-hk/olgahryniuk-patch-70 #508
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Now that we're deploying changes directly to master we need | |
# to make sure staging is kept up to date. This action merges master in to staging | |
# when we deploy a change to master. | |
name: Sync multiple branches | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
sync-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Merge master -> staging | |
uses: devmasx/[email protected] | |
with: | |
type: now | |
from_branch: master | |
target_branch: staging | |
github_token: ${{ github.token }} |