Create merge-to-docs-branch.yml #1
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: Merge to Docs Branch | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
merge-to-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Merge to Docs Branch | |
run: | | |
git config user.name "andsonder" | |
git config user.email "changlu@keter.top" | |
git checkout docs | |
git merge develop --no-edit | |
git push origin docs |