ci(evals): use origin remote for trigger check

This commit is contained in:
Christian Gunderman
2026-03-02 15:25:04 -08:00
parent 4e1895986f
commit 31cd47f230

View File

@@ -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',
});