From 37726d92b2e3dded20d541def8dadd2a7c6eafbf Mon Sep 17 00:00:00 2001 From: Christian Gunderman Date: Mon, 2 Mar 2026 16:13:24 -0800 Subject: [PATCH] PR feedback. --- scripts/changed_prompt.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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();