Update SyncToGitee.yml #8
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 Github Repos To Gitee | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sync Github Repos To Gitee # 名字随便起 | |
uses: Yikun/hub-mirror-action@master | |
with: | |
src: github/wuxianggujun # 源端账户名(github) | |
dst: gitee/wuxianggujun # 目的端账户名(gitee) | |
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} | |
dst_token: ${{ secrets.GITEE_TOKEN }} | |
static_list: 'Tina' | |
account_type: user | |
force_update: true | |
timeout: 300 |