From 47ead35362d3a7a37e1eec6f59248f9f3711f9c6 Mon Sep 17 00:00:00 2001 From: "claude-code-review[bot]" Date: Mon, 10 Feb 2025 22:26:54 +0000 Subject: [PATCH] Add built files --- dist/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dist/index.js b/dist/index.js index 4823083..f227d13 100644 --- a/dist/index.js +++ b/dist/index.js @@ -31862,6 +31862,8 @@ async function setupGitConfig() { // 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', ['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) {