diff --git a/out/github-action.cjs b/out/github-action.cjs index 56015ce..bb27468 100644 --- a/out/github-action.cjs +++ b/out/github-action.cjs @@ -27333,7 +27333,6 @@ async function run(retries = 3) { const commits = commitsResponse.data; await import_exec.default.exec("git", ["fetch", "--all"]); await import_exec.default.exec("git", ["checkout", `origin/${sourceBranch}`]); - await import_exec.default.exec("git", ["pull"]); await import_exec.default.exec("git", ["status"]); await import_exec.default.exec("git", ["log", "--oneline"]); await import_exec.default.exec("git", ["rev-list", "--count", sourceBranch]); diff --git a/src/github-action.ts b/src/github-action.ts index 4bf3bb4..f269b27 100644 --- a/src/github-action.ts +++ b/src/github-action.ts @@ -223,7 +223,6 @@ async function run(retries = 3) { // --- TEST --- await exec.exec('git', ['fetch', '--all']); await exec.exec('git', ['checkout', `origin/${sourceBranch}`]); - await exec.exec('git', ['pull']); await exec.exec('git', ['status']); await exec.exec('git', ['log', '--oneline']); await exec.exec('git', ['rev-list', '--count', sourceBranch]);