fix: support comments on issue close

This commit is contained in:
Codex
2026-06-02 04:03:44 +00:00
parent e95e1c044a
commit f821cca744
3 changed files with 119 additions and 47 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ function displayCommandName(parts: string[]): string {
for (let index = 0; index < parts.length; index += 1) {
const part = parts[index] ?? "";
shown.push(part);
if (part === "--body") {
if (part === "--body" || part === "--comment") {
shown.push("<body:redacted>");
index += 1;
}