-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.json
More file actions
47 lines (47 loc) · 1.42 KB
/
metadata.json
File metadata and controls
47 lines (47 loc) · 1.42 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
{
"$id": "pcit/gitee-release",
"$comment": "https://docs.ci.khs1994.com/usage/",
"description": "The gitee-release plugin is used to create Gitee Release.",
"github": "https://github.com/pcit-plugins/pcit-gitee-release",
"tags": "Release",
"author": "PCIT",
"title": "JSON schema for configuring PCIT CI/CD plugin",
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"repo": {
"type": "string",
"description": "gitee repo",
"default": " ${PCIT_REPO_SLUG}"
},
"target_commitish": {
"type": "string",
"description": "release target commitish",
"default": " ${PCIT_COMMIT}"
},
"token": {
"type": "string",
"description": "gitee token"
},
"overwrite": {
"type": "boolean",
"description": "force overwrite existing release informations (only title and note)",
"default": false
},
"prerelease": {
"type": "boolean",
"description": "set the release as prerelease if set to true",
"default": false
},
"title": {
"type": "string",
"description": "gitee release title"
},
"note": {
"type": "string",
"description": "gitee release note"
}
},
"required": [
"token"
]
}