✨ 用户信息更新功能 + 欢迎页用户信息填写功能 #310
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 Locale 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 -> locale | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Github Actions" | |
git config pull.rebase false | |
git checkout locale | |
git pull origin develop | |
git push origin locale |