-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (23 loc) · 1.1 KB
/
cli-bot-self-update.yml
File metadata and controls
45 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# github action for sync gitee codes to github
name: cli-bot self-update
on:
workflow_dispatch:
schedule:
- cron: '0 21,3,9 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Sync Gitee Repos To Github # 名字随便起
uses: Yikun/hub-mirror-action@master # 使用Yikun/hub-mirror-action
with:
src: gitee/rainoffallingstar # 源端账户名(gitee)
dst: github/rainoffallingstar # 目的端账户名(github)
dst_key: ${{ secrets.GH_PRIVATE_KEY }} # SSH密钥对中的私钥
dst_token: ${{ secrets.GH_TOKEN }} # Github账户的私人令牌
account_type: user # 账户类型
clone_style: "https" # 使用https方式进行clone,也可以使用ssh
debug: true # 启用后会显示所有执行命令
force_update: true # 启用后,强制同步,即强制覆盖目的端仓库
static_list: ".cli-bot" # 静态同步列表,在此填写需要同步的仓库名称,可填写多个
timeout: '60s' # git超时设置,超时后会自动重试git操作