-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (28 loc) · 1.2 KB
/
gitee_docker_repo.yml
File metadata and controls
58 lines (28 loc) · 1.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
# github action for sync gitee codes to github
name: Sync Gitee Org Gmade-studio Repos To Github
on:
schedule:
- cron: '0 22,10 * * *'
push:
branches: [ main ]
delete:
branches: [ main ]
create:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Sync Gmadestudio Repos To Github # 名字随便起
uses: Yikun/hub-mirror-action@master # 使用Yikun/hub-mirror-action
with:
src: gitee/gmadehub-studio # 源端账户名(gitee)
dst: github/gmade-studio # 目的端账户名(github)
dst_key: ${{ secrets.GH_PRIVATE_KEY }} # SSH密钥对中的私钥
dst_token: ${{ secrets.GH_TOKEN }} # Github账户的私人令牌
account_type: org
clone_style: "https" # 使用https方式进行clone,也可以使用ssh
debug: true # 启用后会显示所有执行命令
force_update: true # 启用后,强制同步,即强制覆盖目的端仓库
static_list: "gmadeomicsrocker" # 静态同步列表,在此填写需要同步的仓库名称,可填写多个
timeout: '60s' # git超时设置,超时后会自动重试git操作