From 0e52b10da16af9fb0b297bbc37d49a5959a2b91d Mon Sep 17 00:00:00 2001 From: leesam Date: Fri, 16 Jan 2026 16:26:27 +0900 Subject: [PATCH] ai: make gemini trigger without /review --- .github/workflows/gemini-dispatch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gemini-dispatch.yml b/.github/workflows/gemini-dispatch.yml index a4783e6..a43b598 100644 --- a/.github/workflows/gemini-dispatch.yml +++ b/.github/workflows/gemini-dispatch.yml @@ -83,9 +83,9 @@ jobs: if (eventType === 'pull_request.opened') { core.setOutput('command', 'review'); - } else if (request.startsWith("@gemini /review")) { + } else if (request.startsWith("@gemini")) { core.setOutput('command', 'review'); - const additionalContext = request.replace(/^@gemini \/review/, '').trim(); + const additionalContext = request.replace(/^@gemini/, '').trim(); core.setOutput('additional_context', additionalContext); } else { core.setOutput('command', 'fallthrough');