diff --git a/scripts/changed_prompt.js b/scripts/changed_prompt.js index 69ef2e0eaf..9cf7c1a261 100644 --- a/scripts/changed_prompt.js +++ b/scripts/changed_prompt.js @@ -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();