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
feat: implement UpdateIssueComment test and snapshot
- Add unit test for UpdateIssueComment tool in pkg/github/issues_test.go to verify functionality and input validation.
- Introduce a snapshot file for UpdateIssueComment tool to document expected behavior and input schema.
- Include new PATCH endpoint constant for updating issue comments in pkg/github/helper_test.go.
"description": "Update an existing comment on an issue or pull request in a GitHub repository. Use the comment ID from issue_read with method get_comments, or from the comment object when adding a comment.",
6
+
"inputSchema": {
7
+
"properties": {
8
+
"body": {
9
+
"description": "New comment content",
10
+
"type": "string"
11
+
},
12
+
"comment_id": {
13
+
"description": "ID of the comment to update (from issue_read get_comments or add_issue_comment response)",
0 commit comments