-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.json
57 lines (57 loc) · 1.57 KB
/
metadata.json
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
{
"$id": "pcit/pages",
"$comment": "https://docs.ci.khs1994.com/usage/",
"description": "The pages plugin is used to push dir to git.",
"github": "https://github.com/pcit-plugins/pcit-pages",
"tags": "Git",
"author": "PCIT",
"title": "JSON schema for configuring PCIT CI/CD plugin",
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"username": {
"type": "string",
"description": "git username",
"default": " pcit-ce"
},
"target_branch": {
"type": "string",
"description": "git branch",
"default": " gh-pages"
},
"git_url": {
"type": "string",
"description": " git url"
},
"local_dir": {
"type": "string",
"description": "local dir"
},
"email": {
"type": "string",
"description": "git email",
"default": " ci@khs1994.com"
},
"keep_history": {
"type": "boolean",
"description": "keep history",
"default": false
},
"git_token": {
"type": "string",
"description": "git token",
"default": [
" ${GITHUB_TOKEN}"
]
},
"message": {
"type": "string",
"description": "git commit message",
"default": " Deploy Git by PCIT https://ci.khs1994.com"
}
},
"required": [
"git_url",
"local_dir",
"git_token"
]
}