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
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -937,6 +937,7 @@ The following sets of tools are available:
937
937
(string, required)
938
938
-`milestone`: Milestone number (number, optional)
939
939
-`owner`: Repository owner (string, required)
940
+
-`parent_issue_number`: Issue number of the parent issue. Only used when method is 'create'. The new issue is created and attached to this parent in the same operation. (number, optional)
940
941
-`repo`: Repository name (string, required)
941
942
-`state`: New state (string, optional)
942
943
-`state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
-`parent_issue_number`: Issue number of the parent issue. Only used when method is 'create'. The new issue is created and attached to this parent in the same operation. (number, optional)
70
71
-`repo`: Repository name (string, required)
71
72
-`state`: New state (string, optional)
72
73
-`state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
-`body`: Issue body content (optional) (string, optional)
124
125
-`owner`: Repository owner (username or organization) (string, required)
126
+
-`parent_issue_number`: Issue number of the parent issue. The new issue is created and attached to this parent in the same operation. (number, optional)
Copy file name to clipboardExpand all lines: docs/insiders-features.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ The list below is generated from the Go source. It covers tool **inventory and s
61
61
(string, required)
62
62
-`milestone`: Milestone number (number, optional)
63
63
-`owner`: Repository owner (string, required)
64
+
-`parent_issue_number`: Issue number of the parent issue. Only used when method is 'create'. The new issue is created and attached to this parent in the same operation. (number, optional)
64
65
-`repo`: Repository name (string, required)
65
66
-`state`: New state (string, optional)
66
67
-`state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/issue_write.snap
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,11 @@
91
91
"description": "Repository owner",
92
92
"type": "string"
93
93
},
94
+
"parent_issue_number": {
95
+
"description": "Issue number of the parent issue. Only used when method is 'create'. The new issue is created and attached to this parent in the same operation.",
@@ -2349,6 +2362,9 @@ var issueWriteFormParams = map[string]struct{}{
2349
2362
"_ui_submitted": {},
2350
2363
}
2351
2364
2365
+
// parent_issue_number is intentionally omitted because the current form cannot
2366
+
// represent it. Calls that supply a parent bypass the form instead of dropping it.
2367
+
2352
2368
// issueWriteAwaitingFormResult builds the "awaiting form submission" stub
2353
2369
// returned when issue_write hands off to the MCP App form. The body is shared
2354
2370
// by IssueWrite and LegacyIssueWrite. The result is marked IsError=true so
@@ -2425,6 +2441,11 @@ Options are:
2425
2441
Type: "number",
2426
2442
Description: "Issue number to update",
2427
2443
},
2444
+
"parent_issue_number": {
2445
+
Type: "number",
2446
+
Description: "Issue number of the parent issue. Only used when method is 'create'. The new issue is created and attached to this parent in the same operation.",
0 commit comments