Skip to content

修复水平垂直翻转同时开启 #155

修复水平垂直翻转同时开启

修复水平垂直翻转同时开启 #155

Workflow file for this run

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