Github Actions: [remote rejected] master -> master (shallow update not allowed), error: failed to push some refs

Github Actions: [remote rejected] master -> master (shallow update not allowed), error: failed to push some refs

在我的 Github 工作流程中,我正在检查两个存储库。随后,我将工作流回购 "repoA" 的两个目录与​​回购 "repoB" 合并。推送到 repoB 时,出现错误:

From ../repoA
 * [new branch]      master     -> workspace/master
Automatic merge went well; stopped before committing as requested
[master cbd72fe] Update
To https://github.com/username/repoB.git
 ! [remote rejected] master -> master (shallow update not allowed)
error: failed to push some refs to 'https://username@github.com/username/repoB.git'
##[error]Process completed with exit code 1.

我不明白为什么我的存储库很浅以及如何修复它。 Github 工作流程文件:

name: test
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: Checkout current repo
      uses: actions/checkout@v2
      with:
        path: repoA
    - name: Checkout other repo
      uses: actions/checkout@v2
      with:
        repository: username/repoB
        path: repoB
        token: ${{ secrets.ACCESS_TOKEN }}
    - name: Update repo
      run: | 
        cd repoB
        git remote add repoa ../repoA
        git fetch --unshallow repoa
        git config --global user.email "asd@asd.com"
        git config --global user.name "username"
        git merge -s ours --no-commit --allow-unrelated-histories repoa/master
        rm -rf webserver
        rm -rf etl
        git add .
        git read-tree --prefix=webserver -u repoa/master:serv
        git read-tree --prefix=etl -u repoa/master:misc_projects/etl
        git add .
        git commit -m "Update" -a
        git push -f https://username@github.com/username/repoB.git

默认情况下 actions/checkout 只签出单个提交,使签出变浅。如果您想要所有历史记录,您可以将 fetch-depth 输入设置为 0

查看文档 here

- uses: actions/checkout@v2
  with:
    fetch-depth: 0