forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backportrc.json
47 lines (47 loc) · 1.13 KB
/
backportrc.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
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": true,
"properties": {
"upsteam": {
"description": "Identifier for the GitHub project as `{owner}/{repoName}`",
"type": "string"
},
"branches": {
"description": "Branches to backport to",
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"checked": {
"type": "boolean"
}
},
"required": ["name", "checked"]
}
]
}
},
"labels": {
"description": "Labels that will be added to the pull request",
"type": "array",
"items": {
"type": "string"
}
},
"all": {
"description": "Whether to only show the current user's commits or commits from anyone",
"type": "boolean"
}
},
"required": ["upstream", "branches"],
"title": "JSON schema for Backport config file",
"type": "object"
}