From ffa5ae0ce898fbcfd028636f42a8d6c66ebf26bc Mon Sep 17 00:00:00 2001 From: leesam Date: Fri, 16 Jan 2026 15:45:24 +0900 Subject: [PATCH] ai: rename gemini code reviewer name --- .github/workflows/gemini-dispatch.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gemini-dispatch.yml b/.github/workflows/gemini-dispatch.yml index eefc02f..9b37ba9 100644 --- a/.github/workflows/gemini-dispatch.yml +++ b/.github/workflows/gemini-dispatch.yml @@ -36,14 +36,14 @@ jobs: dispatch: # For PRs: only if not from a fork - # For comments: only if user types @gemini-cli and is OWNER/MEMBER/COLLABORATOR + # For comments: only if user types @gemini and is OWNER/MEMBER/COLLABORATOR if: |- ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false ) || ( github.event.sender.type == 'User' && - startsWith(github.event.comment.body || github.event.review.body, '@gemini-cli') && + startsWith(github.event.comment.body || github.event.review.body, '@gemini') && contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association || github.event.review.author_association) ) runs-on: 'ubuntu-latest' @@ -83,9 +83,9 @@ jobs: if (eventType === 'pull_request.opened') { core.setOutput('command', 'review'); - } else if (request.startsWith("@gemini-cli /review")) { + } else if (request.startsWith("@gemini /review")) { core.setOutput('command', 'review'); - const additionalContext = request.replace(/^@gemini-cli \/review/, '').trim(); + const additionalContext = request.replace(/^@gemini \/review/, '').trim(); core.setOutput('additional_context', additionalContext); } else { core.setOutput('command', 'fallthrough');