Rollup merge of #88699 - Mark-Simulacrum:fixes-cherry-picker, r=pietroalbini

Remove extra unshallow from cherry-pick checker

This is already done by 13db8440bb/src/ci/init_repo.sh (L32-L36) on the beta channel, and git throws an error if you attempt to unshallow an already non-shallow repository.

r? ```@pietroalbini```
This commit is contained in:
Manish Goregaokar 2021-09-12 03:44:55 -07:00 committed by GitHub
commit a8e3afe372
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,14 +18,6 @@ verify_backported_commits_main() {
exit 0
fi
echo 'git: unshallowing the repository so we can check commits'
git fetch \
--no-tags \
--no-recurse-submodules \
--progress \
--prune \
--unshallow
if [[ $ci_base_branch == "beta" ]]; then
verify_cherries master "$BETA_LIMIT" \
|| exit 1