Merge pull request #4 from CameronRosencutter/firebase_deploy #5
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
name: Sync firebase_deploy with Main Branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout firebase_deploy branch | |
uses: actions/checkout@v2 | |
with: | |
ref: firebase_deploy | |
- name: Set up Git | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email '[email protected]' | |
- name: Fetch and merge changes from main | |
run: | | |
git fetch origin main | |
git merge origin/main --allow-unrelated-histories | |
git push origin firebase_deploy |