You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`start_line`: Optional 1-based starting line of the window of interest. Only ranges overlapping [start_line, end_line] are returned, clamped to the window. (number, optional)
Copy file name to clipboardExpand all lines: docs/insiders-features.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,38 @@ The list below is generated from the Go source. It covers tool **inventory and s
101
101
-`repo`: Repository name (string, required)
102
102
-`start_line`: Optional 1-based starting line of the window of interest. Only ranges overlapping [start_line, end_line] are returned, clamped to the window. (number, optional)
"description": "Read an issue's dependency relationships in a GitHub repository: the issues that block it (blocked_by) or the issues it blocks (blocking).",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"after": {
10
+
"description": "Cursor for pagination. Use the cursor from the previous response.",
11
+
"type": "string"
12
+
},
13
+
"issue_number": {
14
+
"description": "The number of the issue",
15
+
"type": "number"
16
+
},
17
+
"method": {
18
+
"description": "The read operation to perform on a single issue's dependencies.\nOptions are:\n1. get_blocked_by - List the issues that block this issue (this issue is blocked by them).\n2. get_blocking - List the issues that this issue blocks.\n",
19
+
"enum": [
20
+
"get_blocked_by",
21
+
"get_blocking"
22
+
],
23
+
"type": "string"
24
+
},
25
+
"owner": {
26
+
"description": "The owner of the repository",
27
+
"type": "string"
28
+
},
29
+
"perPage": {
30
+
"description": "Results per page for pagination (min 1, max 100)",
"description": "Add or remove an issue dependency relationship in a GitHub repository. Use type 'blocked_by' to record that the subject issue is blocked by a related issue, or type 'blocking' to record that the subject issue blocks a related issue. The related issue defaults to the same repository as the subject unless related_owner/related_repo are provided.",
6
+
"inputSchema": {
7
+
"properties": {
8
+
"issue_number": {
9
+
"description": "The number of the subject issue",
10
+
"type": "number"
11
+
},
12
+
"method": {
13
+
"description": "The action to perform.\nOptions are:\n- 'add' - create the dependency relationship.\n- 'remove' - delete the dependency relationship.",
14
+
"enum": [
15
+
"add",
16
+
"remove"
17
+
],
18
+
"type": "string"
19
+
},
20
+
"owner": {
21
+
"description": "The owner of the subject issue's repository",
22
+
"type": "string"
23
+
},
24
+
"related_issue_number": {
25
+
"description": "The number of the related issue to link or unlink",
26
+
"type": "number"
27
+
},
28
+
"related_owner": {
29
+
"description": "The owner of the related issue's repository. Defaults to 'owner' when omitted.",
30
+
"type": "string"
31
+
},
32
+
"related_repo": {
33
+
"description": "The name of the related issue's repository. Defaults to 'repo' when omitted.",
34
+
"type": "string"
35
+
},
36
+
"repo": {
37
+
"description": "The name of the subject issue's repository",
38
+
"type": "string"
39
+
},
40
+
"type": {
41
+
"description": "The relationship direction relative to the subject issue.\nOptions are:\n- 'blocked_by' - the subject issue is blocked by the related issue.\n- 'blocking' - the subject issue blocks the related issue.",
0 commit comments