Skip to content

Commit 0f2f4dd

Browse files
Merge branch 'github:main' into main
2 parents 0c8dbef + 85598ba commit 0f2f4dd

14 files changed

Lines changed: 911 additions & 0 deletions

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,13 @@ The following sets of tools are available:
10571057
- `repo`: Repository name (string, required)
10581058
- `sub_issue_id`: The ID of the sub-issue to add. ID is not the same as issue number (number, required)
10591059

1060+
- **update_issue_comment** - Update issue comment
1061+
- **OAuth Challenge Scopes**: `repo`
1062+
- `body`: New comment content (string, required)
1063+
- `comment_id`: The numeric ID of the issue or pull request conversation comment to update. Do not use a pull request review comment ID. (integer, required)
1064+
- `owner`: Repository owner (string, required)
1065+
- `repo`: Repository name (string, required)
1066+
10601067
</details>
10611068

10621069
<details>

docs/feature-flags.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,20 @@ as output formatting) won't appear here.
184184
- `repo`: Repository name (string, required)
185185
- `title`: Issue title (string, required)
186186

187+
- **remove_issue_comment_reaction** - Remove Reaction from Issue or Pull Request Comment
188+
- **OAuth Challenge Scopes**: `repo`
189+
- `comment_id`: The issue or pull request comment ID (number, required)
190+
- `owner`: Repository owner (username or organization) (string, required)
191+
- `reaction_id`: The reaction ID to remove (number, required)
192+
- `repo`: Repository name (string, required)
193+
194+
- **remove_issue_reaction** - Remove Reaction from Issue or Pull Request
195+
- **OAuth Challenge Scopes**: `repo`
196+
- `issue_number`: The issue number (number, required)
197+
- `owner`: Repository owner (username or organization) (string, required)
198+
- `reaction_id`: The reaction ID to remove (number, required)
199+
- `repo`: Repository name (string, required)
200+
187201
- **remove_sub_issue** - Remove Sub-Issue
188202
- **OAuth Challenge Scopes**: `repo`
189203
- `issue_number`: The parent issue number (number, required)
@@ -301,6 +315,13 @@ as output formatting) won't appear here.
301315
- `pullNumber`: The pull request number (number, required)
302316
- `repo`: Repository name (string, required)
303317

318+
- **remove_pull_request_review_comment_reaction** - Remove Pull Request Review Comment Reaction
319+
- **OAuth Challenge Scopes**: `repo`
320+
- `comment_id`: The numeric pull request review comment ID. Use the number from a #discussion_r... anchor, not the GraphQL thread node ID (PRRT_...). (number, required)
321+
- `owner`: Repository owner (username or organization) (string, required)
322+
- `reaction_id`: The reaction ID to remove (number, required)
323+
- `repo`: Repository name (string, required)
324+
304325
- **request_pull_request_reviewers** - Request Pull Request Reviewers
305326
- **OAuth Challenge Scopes**: `repo`
306327
- `owner`: Repository owner (username or organization) (string, required)
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"annotations": {
3+
"destructiveHint": true,
4+
"idempotentHint": false,
5+
"openWorldHint": true,
6+
"readOnlyHint": false,
7+
"title": "Remove Reaction from Issue or Pull Request Comment"
8+
},
9+
"description": "Remove a reaction from an issue or pull request comment.",
10+
"inputSchema": {
11+
"properties": {
12+
"comment_id": {
13+
"description": "The issue or pull request comment ID",
14+
"minimum": 1,
15+
"type": "number"
16+
},
17+
"owner": {
18+
"description": "Repository owner (username or organization)",
19+
"type": "string"
20+
},
21+
"reaction_id": {
22+
"description": "The reaction ID to remove",
23+
"minimum": 1,
24+
"type": "number"
25+
},
26+
"repo": {
27+
"description": "Repository name",
28+
"type": "string"
29+
}
30+
},
31+
"required": [
32+
"owner",
33+
"repo",
34+
"comment_id",
35+
"reaction_id"
36+
],
37+
"type": "object"
38+
},
39+
"name": "remove_issue_comment_reaction"
40+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"annotations": {
3+
"destructiveHint": true,
4+
"idempotentHint": false,
5+
"openWorldHint": true,
6+
"readOnlyHint": false,
7+
"title": "Remove Reaction from Issue or Pull Request"
8+
},
9+
"description": "Remove a reaction from an issue or pull request.",
10+
"inputSchema": {
11+
"properties": {
12+
"issue_number": {
13+
"description": "The issue number",
14+
"minimum": 1,
15+
"type": "number"
16+
},
17+
"owner": {
18+
"description": "Repository owner (username or organization)",
19+
"type": "string"
20+
},
21+
"reaction_id": {
22+
"description": "The reaction ID to remove",
23+
"minimum": 1,
24+
"type": "number"
25+
},
26+
"repo": {
27+
"description": "Repository name",
28+
"type": "string"
29+
}
30+
},
31+
"required": [
32+
"owner",
33+
"repo",
34+
"issue_number",
35+
"reaction_id"
36+
],
37+
"type": "object"
38+
},
39+
"name": "remove_issue_reaction"
40+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"annotations": {
3+
"destructiveHint": true,
4+
"idempotentHint": false,
5+
"openWorldHint": true,
6+
"readOnlyHint": false,
7+
"title": "Remove Pull Request Review Comment Reaction"
8+
},
9+
"description": "Remove a reaction from a pull request review comment.",
10+
"inputSchema": {
11+
"properties": {
12+
"comment_id": {
13+
"description": "The numeric pull request review comment ID. Use the number from a #discussion_r... anchor, not the GraphQL thread node ID (PRRT_...).",
14+
"minimum": 1,
15+
"type": "number"
16+
},
17+
"owner": {
18+
"description": "Repository owner (username or organization)",
19+
"type": "string"
20+
},
21+
"reaction_id": {
22+
"description": "The reaction ID to remove",
23+
"minimum": 1,
24+
"type": "number"
25+
},
26+
"repo": {
27+
"description": "Repository name",
28+
"type": "string"
29+
}
30+
},
31+
"required": [
32+
"owner",
33+
"repo",
34+
"comment_id",
35+
"reaction_id"
36+
],
37+
"type": "object"
38+
},
39+
"name": "remove_pull_request_review_comment_reaction"
40+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"annotations": {
3+
"idempotentHint": false,
4+
"readOnlyHint": false,
5+
"title": "Update issue comment"
6+
},
7+
"description": "Update the body of an existing issue or pull request conversation comment. This tool cannot update pull request review comments.",
8+
"inputSchema": {
9+
"properties": {
10+
"body": {
11+
"description": "New comment content",
12+
"minLength": 1,
13+
"type": "string"
14+
},
15+
"comment_id": {
16+
"description": "The numeric ID of the issue or pull request conversation comment to update. Do not use a pull request review comment ID.",
17+
"minimum": 1,
18+
"type": "integer"
19+
},
20+
"owner": {
21+
"description": "Repository owner",
22+
"type": "string"
23+
},
24+
"repo": {
25+
"description": "Repository name",
26+
"type": "string"
27+
}
28+
},
29+
"required": [
30+
"owner",
31+
"repo",
32+
"comment_id",
33+
"body"
34+
],
35+
"type": "object"
36+
},
37+
"name": "update_issue_comment"
38+
}

0 commit comments

Comments
 (0)