-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.json
More file actions
36 lines (36 loc) · 1.06 KB
/
metadata.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"$id": "pcit/git",
"$comment": "https://docs.ci.khs1994.com/usage/",
"description": "The Git plugin can be used to exec git command",
"github": "https://github.com/pcit-plugins/pcit-git",
"tags": "Git",
"author": "PCIT",
"title": "JSON schema for configuring PCIT CI/CD plugin",
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"depth": {
"type": "integer",
"description": "clone depth",
"default": 25
},
"recursive": {
"type": "boolean",
"description": "clone submodules",
"default": false
},
"skip_verify": {
"type": "boolean",
"description": "skip tls verification",
"default": false
},
"tags": {
"type": "boolean",
"description": "clone tags",
"default": false
},
"submodule_override": {
"type": "object",
"description": "submodule overrides, example:\n path: git_url"
}
}
}