File tree 3 files changed +12
-9
lines changed
3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 12
12
workflow_call :
13
13
inputs :
14
14
target_sync_repo :
15
- description : " 目标(下游)仓库,格式为 owner/repository ,必须指定 "
15
+ description : " 目标(下游)仓库,格式为 owner/repository"
16
16
required : true
17
17
type : string
18
18
target_sync_branch :
19
- description : " 目标(下游)同步分支,必须指定 "
19
+ description : " 目标(下游)同步分支"
20
20
required : true
21
21
type : string
22
22
upstream_sync_repo :
23
23
description : " 上游仓库,默认为 github.repository ,根据实际情况修改"
24
24
type : string
25
25
default : ${{ github.repository }}
26
26
upstream_sync_branch :
27
- description : " 上游同步分支,必须指定 "
27
+ description : " 上游同步分支"
28
28
required : true
29
29
type : string
30
30
sync_test_mode : # Adds a boolean option that appears during manual workflow run for easy test mode config
Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
inputs :
6
6
name :
7
- description : " 目标名,必须指定"
7
+ description : " 目标名"
8
+ required : true
8
9
type : choice
9
10
options :
10
11
- test1
30
31
- test21
31
32
- test22
32
33
repo_name :
33
- description : " 目标(下游)仓库,格式为 owner/repository ,必须指定"
34
+ description : " 目标(下游)仓库,格式为 owner/repository"
35
+ required : true
34
36
type : choice
35
37
options :
36
38
- prototype-test/dist-repo-use-branch_test1
56
58
- prototype-test/dist-repo-use-branch_test21
57
59
- prototype-test/dist-repo-use-branch_test22
58
60
upstream_dist_path :
59
- description : " 上游仓库分发路径,必须指定,不能以 / 结尾"
61
+ description : " 上游仓库分发路径,不能以 / 结尾"
62
+ required : true
60
63
type : choice
61
64
options :
62
65
- test/test1
Original file line number Diff line number Diff line change 7
7
workflow_call :
8
8
inputs :
9
9
name :
10
- description : " 目标(下游)名,必须指定 "
10
+ description : " 目标(下游)名"
11
11
required : true
12
12
type : string
13
13
repo_name :
14
- description : " 目标(下游)仓库,格式为 owner/repository ,必须指定 "
14
+ description : " 目标(下游)仓库,格式为 owner/repository"
15
15
required : true
16
16
type : string
17
17
main_branch :
23
23
default : ${{ github.repository }} # prototype-validation/dist-repo-use-branch_upstream #
24
24
type : string
25
25
upstream_dist_path :
26
- description : " 上游仓库分发路径,必须指定, 不能以 / 结尾"
26
+ description : " 上游仓库分发路径,不能以 / 结尾"
27
27
required : true
28
28
type : string
29
29
You can’t perform that action at this time.
0 commit comments