docs: clarify source branch review files

This commit is contained in:
2026-05-15 06:43:20 +00:00
parent f43ba63f0f
commit c88c0d02c8
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ function normalizeExclusions(data) {
}
/**
* 讀取舊 findings(從 workspace 的 FINDINGS_PATH
* 讀取舊 findings(從來源分支的 cloned repoDir 中的 FINDINGS_PATH
*/
export function loadOldFindings(workspace) {
const old = readJSONArray(path.join(workspace, FINDINGS_PATH), '舊 findings ').map(f => ({ ...f, is_new: false }));
@@ -110,7 +110,7 @@ export async function deduplicateWithAI(findings) {
}
/**
* 讀取排除問題檔案(從 workspace 的 EXCLUSIONS_PATH
* 讀取排除問題檔案(從來源分支的 cloned repoDir 中的 EXCLUSIONS_PATH
*/
export function loadExclusions(workspace) {
const fullPath = path.join(workspace, EXCLUSIONS_PATH);