You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configure actions/checkout to fetch the entire repository history instead of a shallow clone. This fixes the "shallow update not allowed" error when creating the repository database during releases.
The repo-db build step needs to push the entire repository to a temporary bare repo, which requires full history.
## Test plan
The error only occurs in CI with shallow clones. With fetch-depth: 0, the workflow will clone the full repository and the git push --mirror command will succeed.
0 commit comments