Add built files

This commit is contained in:
claude-code-review[bot]
2025-02-10 22:26:54 +00:00
parent 785bb103c6
commit 47ead35362

2
dist/index.js vendored
View File

@@ -31862,6 +31862,8 @@ async function setupGitConfig() {
// Configure git to fetch PR refs // Configure git to fetch PR refs
await exec('git', ['config', '--local', '--add', 'remote.origin.fetch', '+refs/pull/*/head:refs/remotes/origin/pr/*']); await exec('git', ['config', '--local', '--add', 'remote.origin.fetch', '+refs/pull/*/head:refs/remotes/origin/pr/*']);
await exec('git', ['fetch', 'origin']); await exec('git', ['fetch', 'origin']);
await exec('git', ['config', '--global', 'user.name', 'claude-code-review[bot]']);
await exec('git', ['config', '--global', 'user.email', 'claude-code-review[bot]@users.noreply.github.com']);
} }
async function getDiff(baseSha, headSha) { async function getDiff(baseSha, headSha) {