From 57de2a423a71ea6ca362373dd971d36fa87d4093 Mon Sep 17 00:00:00 2001 From: numa Date: Fri, 13 Nov 2020 00:48:44 +0900 Subject: [PATCH] fix(ci): fix sync workflow --- .github/workflows/sync.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync.yaml b/.github/workflows/sync.yaml index aeb635ab..58c360b2 100644 --- a/.github/workflows/sync.yaml +++ b/.github/workflows/sync.yaml @@ -23,9 +23,10 @@ jobs: node-version: ${{ matrix.node-version }} - name: Add upstream run: | - git remote add upstream git@github.com:vuejs/docs-next.git + git remote add upstream https://github.com/vuejs/docs-next.git - name: Pull upstream changes run: | + git config pull.rebase false git pull upstream master - name: Sync it run: |