From a217aaaaf785e67c85e9df0014f78e8f35f3c68a Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sun, 28 Feb 2021 18:39:54 +0000 Subject: [PATCH] Dont try and merge changes as it can fail the whole build. --- .github/workflows/update-base.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/update-base.yml b/.github/workflows/update-base.yml index 2e03ff9e5a..667ec1f528 100644 --- a/.github/workflows/update-base.yml +++ b/.github/workflows/update-base.yml @@ -32,8 +32,6 @@ jobs: // Update target PR branch await github.pulls.update({ owner, repo, pull_number, base }); - // Updates the pull request with the latest upstream changes. - await github.pulls.updateBranch({ owner, repo, pull_number, }); await github.issues.createComment({ owner, repo, issue_number, body: '🚀 Target branch has been updated to ' + base }); await github.issues.removeLabel({ owner, repo, issue_number, name: updateLabel }); }