ci(evals): add error logging to trigger script

This commit is contained in:
Christian Gunderman
2026-03-02 15:23:50 -08:00
parent 4462dbb861
commit 4e1895986f

View File

@@ -34,8 +34,12 @@ function main() {
);
console.log(shouldRun ? 'true' : 'false');
} catch {
} catch (error) {
// If anything fails (e.g., no git history), run evals to be safe
console.warn(
'Warning: Failed to determine if evals should run. Defaulting to true.',
);
console.error(error);
console.log('true');
}
}