fix: add gh issue comments command
This commit is contained in:
@@ -362,10 +362,11 @@ export function issueBodyReadCommands(repo: string, issueNumber: number): Record
|
||||
|
||||
export function issueCommentReadCommands(repo: string, issueNumber: number): Record<string, string> {
|
||||
return {
|
||||
comments: `bun scripts/cli.ts gh issue view ${issueNumber} --repo ${repo} --json comments`,
|
||||
comments: `bun scripts/cli.ts gh issue comments ${issueNumber} --repo ${repo}`,
|
||||
comment: `bun scripts/cli.ts gh issue comment view <commentId> --repo ${repo} --full`,
|
||||
full: `bun scripts/cli.ts gh issue view ${issueNumber} --repo ${repo} --full`,
|
||||
raw: `bun scripts/cli.ts gh issue view ${issueNumber} --repo ${repo} --raw`,
|
||||
full: `bun scripts/cli.ts gh issue comments ${issueNumber} --repo ${repo} --full`,
|
||||
raw: `bun scripts/cli.ts gh issue comments ${issueNumber} --repo ${repo} --raw`,
|
||||
issue: `bun scripts/cli.ts gh issue view ${issueNumber} --repo ${repo}`,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user