Make bot review setup self-contained #11

Merged
temeddix merged 4 commits from fix/remove-review-plugin-setup into main 2026-09-14 08:49:50 +00:00
Showing only changes of commit c637553b5f - Show all commits
-3
View File
@@ -241,9 +241,6 @@ async function codexDeviceLogin(): Promise<void> {
await new Promise((resolve) => setTimeout(resolve, 3000)); await new Promise((resolve) => setTimeout(resolve, 3000));
await postComment(shown); await postComment(shown);
await Promise.all([login.status, drained]); await Promise.all([login.status, drained]);
const status = await new Deno.Command("codex", { args: ["login", "status"] })
.output();
await postComment(new TextDecoder().decode(status.stdout));
} }
async function runCodex(prompt: string): Promise<string> { async function runCodex(prompt: string): Promise<string> {