PR feedback.

This commit is contained in:
Christian Gunderman
2026-03-02 16:13:24 -08:00
parent 3be302afe3
commit 37726d92b2

View File

@@ -8,6 +8,7 @@ import { execSync } from 'node:child_process';
const EVALS_FILE_PREFIXES = [
'packages/core/src/prompts/',
'packages/core/src/tools/',
'evals/',
];
function main() {
@@ -18,7 +19,7 @@ function main() {
stdio: 'ignore',
});
// Find the merge base with main
// Find the merge base with the target branch.
const mergeBase = execSync('git merge-base HEAD FETCH_HEAD', {
encoding: 'utf-8',
}).trim();