Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/feature-flags.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,20 @@ as output formatting) won't appear here.
- `repo`: Repository name (string, required)
- `title`: Issue title (string, required)

- **remove_issue_comment_reaction** - Remove Reaction from Issue or Pull Request Comment
- **OAuth Challenge Scopes**: `repo`
- `comment_id`: The issue or pull request comment ID (number, required)
- `owner`: Repository owner (username or organization) (string, required)
- `reaction_id`: The reaction ID to remove (number, required)
- `repo`: Repository name (string, required)

- **remove_issue_reaction** - Remove Reaction from Issue or Pull Request
- **OAuth Challenge Scopes**: `repo`
- `issue_number`: The issue number (number, required)
- `owner`: Repository owner (username or organization) (string, required)
- `reaction_id`: The reaction ID to remove (number, required)
- `repo`: Repository name (string, required)

- **remove_sub_issue** - Remove Sub-Issue
- **OAuth Challenge Scopes**: `repo`
- `issue_number`: The parent issue number (number, required)
Expand Down Expand Up @@ -301,6 +315,13 @@ as output formatting) won't appear here.
- `pullNumber`: The pull request number (number, required)
- `repo`: Repository name (string, required)

- **remove_pull_request_review_comment_reaction** - Remove Pull Request Review Comment Reaction
- **OAuth Challenge Scopes**: `repo`
- `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)
- `owner`: Repository owner (username or organization) (string, required)
- `reaction_id`: The reaction ID to remove (number, required)
- `repo`: Repository name (string, required)

- **request_pull_request_reviewers** - Request Pull Request Reviewers
- **OAuth Challenge Scopes**: `repo`
- `owner`: Repository owner (username or organization) (string, required)
Expand Down
40 changes: 40 additions & 0 deletions pkg/github/__toolsnaps__/remove_issue_comment_reaction.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"annotations": {
"destructiveHint": true,
"idempotentHint": false,
"openWorldHint": true,
"readOnlyHint": false,
"title": "Remove Reaction from Issue or Pull Request Comment"
},
"description": "Remove a reaction from an issue or pull request comment.",
"inputSchema": {
"properties": {
"comment_id": {
"description": "The issue or pull request comment ID",
"minimum": 1,
"type": "number"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"reaction_id": {
"description": "The reaction ID to remove",
"minimum": 1,
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"comment_id",
"reaction_id"
],
"type": "object"
},
"name": "remove_issue_comment_reaction"
}
40 changes: 40 additions & 0 deletions pkg/github/__toolsnaps__/remove_issue_reaction.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"annotations": {
"destructiveHint": true,
"idempotentHint": false,
"openWorldHint": true,
"readOnlyHint": false,
"title": "Remove Reaction from Issue or Pull Request"
},
"description": "Remove a reaction from an issue or pull request.",
"inputSchema": {
"properties": {
"issue_number": {
"description": "The issue number",
"minimum": 1,
"type": "number"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"reaction_id": {
"description": "The reaction ID to remove",
"minimum": 1,
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"issue_number",
"reaction_id"
],
"type": "object"
},
"name": "remove_issue_reaction"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"annotations": {
"destructiveHint": true,
"idempotentHint": false,
"openWorldHint": true,
"readOnlyHint": false,
"title": "Remove Pull Request Review Comment Reaction"
},
"description": "Remove a reaction from a pull request review comment.",
"inputSchema": {
"properties": {
"comment_id": {
"description": "The numeric pull request review comment ID. Use the number from a #discussion_r... anchor, not the GraphQL thread node ID (PRRT_...).",
"minimum": 1,
"type": "number"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"reaction_id": {
"description": "The reaction ID to remove",
"minimum": 1,
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"comment_id",
"reaction_id"
],
"type": "object"
},
"name": "remove_pull_request_review_comment_reaction"
}
Loading
Loading