From 9c87d8f7b86472981928c2ce0454dc9f5c5d8467 Mon Sep 17 00:00:00 2001 From: di-sukharev Date: Sat, 20 May 2023 21:54:33 +0800 Subject: [PATCH] build --- out/github-action.cjs | 1 - src/github-action.ts | 1 - 2 files changed, 2 deletions(-) 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]);