-
Notifications
You must be signed in to change notification settings - Fork 0
/
createPullRequest.in.json
50 lines (50 loc) · 1.62 KB
/
createPullRequest.in.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
{
"type": "object",
"properties": {
"repository": {
"type": "string",
"title": "repository",
"description": "Repository name where the issue should be created",
"required": true
},
"owner": {
"type": "string",
"title": "owner",
"description": "Owner of the repository",
"required": true
},
"title": {
"type": "string",
"required": true,
"description": "The title of the pull request.",
"title": "title"
},
"head": {
"type": "string",
"title": "head",
"required": true,
"description": "The name of the branch where your changes are implemented. For cross-repository pull requests in the same network, namespace head with a user like this: username:branch."
},
"base": {
"type": "string",
"title": "base",
"required": true,
"description": "The name of the branch you want the changes pulled into. This should be an existing branch on the current repository. You cannot submit a pull request to one repository that requests a merge to a base of another repository."
},
"body": {
"type": "string",
"title": "body",
"description": "The contents of the pull request."
},
"maintainer_can_modify": {
"type": "boolean",
"title": "maintainer_can_modify",
"description": "Indicates whether maintainers can modify the pull request."
},
"draft": {
"type": "boolean",
"title": "draft",
"description": "Indicates whether the pull request is a draft. See Draft Pull Requests in the GitHub Help documentation to learn more."
}
}
}