From 31cd47f23015ffd2411c0263e2ede8fd6bcdc0f7 Mon Sep 17 00:00:00 2001 From: Christian Gunderman Date: Mon, 2 Mar 2026 15:25:04 -0800 Subject: [PATCH] ci(evals): use origin remote for trigger check --- scripts/check_evals_trigger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check_evals_trigger.js b/scripts/check_evals_trigger.js index 20ce84bc26..90c8638cb4 100644 --- a/scripts/check_evals_trigger.js +++ b/scripts/check_evals_trigger.js @@ -12,8 +12,8 @@ const EVALS_FILE_PREFIXES = [ function main() { try { - // Fetch main branch to compare against. Use || true to avoid failing if already up to date or no remote. - execSync('git fetch https://github.com/google-gemini/gemini-cli.git main', { + // Fetch main branch from origin. + execSync('git fetch origin main', { stdio: 'ignore', });