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
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -891,7 +891,7 @@ The following sets of tools are available:
891
891
-`issue_number`: The number of the issue (number, required)
892
892
-`method`: The read operation to perform on a single issue.
893
893
Options are:
894
-
1. get - Get details of a specific issue.
894
+
1. get - Get issue details. Also returns best-effort hierarchy flags (`has_parent`, `has_children`); `parent` and `sub_issues_summary` are optional relationship summaries.
895
895
2. get_comments - Get issue comments.
896
896
3. get_sub_issues - Get sub-issues (children) of the issue.
897
897
4. get_parent - Get the parent issue, if this issue is a sub-issue of another.
@@ -968,7 +968,8 @@ The following sets of tools are available:
968
968
- 'add' - add a sub-issue to a parent issue in a GitHub repository.
969
969
- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.
970
970
- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.
971
-
(string, required)
971
+
Writes issue hierarchy. To move a sub-issue to a new parent, use `add` with `replace_parent=true`; there is no writable parent field.
972
+
(string, required)
972
973
-`owner`: Repository owner (string, required)
973
974
-`replace_parent`: When true, replaces the sub-issue's current parent issue. Use with 'add' method only. (boolean, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/issue_read.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
"type": "number"
13
13
},
14
14
"method": {
15
-
"description": "The read operation to perform on a single issue.\nOptions are:\n1. get - Get details of a specific issue.\n2. get_comments - Get issue comments.\n3. get_sub_issues - Get sub-issues (children) of the issue.\n4. get_parent - Get the parent issue, if this issue is a sub-issue of another.\n5. get_labels - Get labels assigned to the issue.\n",
15
+
"description": "The read operation to perform on a single issue.\nOptions are:\n1. get - Get issue details. Also returns best-effort hierarchy flags (`has_parent`, `has_children`); `parent` and `sub_issues_summary` are optional relationship summaries.\n2. get_comments - Get issue comments.\n3. get_sub_issues - Get sub-issues (children) of the issue.\n4. get_parent - Get the parent issue, if this issue is a sub-issue of another.\n5. get_labels - Get labels assigned to the issue.\n",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/sub_issue_write.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
"type": "number"
21
21
},
22
22
"method": {
23
-
"description": "The action to perform on a single sub-issue\nOptions are:\n- 'add' - add a sub-issue to a parent issue in a GitHub repository.\n- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.\n- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.\n\t\t\t\t",
23
+
"description": "The action to perform on a single sub-issue\nOptions are:\n- 'add' - add a sub-issue to a parent issue in a GitHub repository.\n- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.\n- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.\nWrites issue hierarchy. To move a sub-issue to a new parent, use `add` with `replace_parent=true`; there is no writable parent field.\n",
Description: `The read operation to perform on a single issue.
616
-
Options are:
617
-
1. get - Get details of a specific issue.
618
-
2. get_comments - Get issue comments.
619
-
3. get_sub_issues - Get sub-issues (children) of the issue.
620
-
4. get_parent - Get the parent issue, if this issue is a sub-issue of another.
621
-
5. get_labels - Get labels assigned to the issue.
622
-
`,
616
+
Description: "The read operation to perform on a single issue.\n"+
617
+
"Options are:\n"+
618
+
"1. get - Get issue details. Also returns best-effort hierarchy flags (`has_parent`, `has_children`); `parent` and `sub_issues_summary` are optional relationship summaries.\n"+
619
+
"2. get_comments - Get issue comments.\n"+
620
+
"3. get_sub_issues - Get sub-issues (children) of the issue.\n"+
621
+
"4. get_parent - Get the parent issue, if this issue is a sub-issue of another.\n"+
622
+
"5. get_labels - Get labels assigned to the issue.\n",
Description: `The action to perform on a single sub-issue
1351
-
Options are:
1352
-
- 'add' - add a sub-issue to a parent issue in a GitHub repository.
1353
-
- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.
1354
-
- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.
1355
-
`,
1399
+
Description: "The action to perform on a single sub-issue\n"+
1400
+
"Options are:\n"+
1401
+
"- 'add' - add a sub-issue to a parent issue in a GitHub repository.\n"+
1402
+
"- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.\n"+
1403
+
"- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.\n"+
1404
+
"Writes issue hierarchy. To move a sub-issue to a new parent, use `add` with `replace_parent=true`; there is no writable parent field.\n",
0 commit comments