Merge pull request #200 from KIRAKIRA-DOUGA/feature-2024080404-Pendin… #328
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 Develop to Production Branch | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
sync-branches: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- name: Merge develop -> production | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Github Actions" | |
git config pull.rebase false | |
git checkout production | |
git pull origin develop | |
git push origin production |