Skip to content

停止在Markdown段落末尾放置两个空格的方式来换行 #314

停止在Markdown段落末尾放置两个空格的方式来换行

停止在Markdown段落末尾放置两个空格的方式来换行 #314

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