Skip to content

Commit 3eb8408

Browse files
author
Matthias Koeppe
committed
.ci/merge-fixes.sh: Unshallow quietly before running 'gh'
1 parent 09b96f4 commit 3eb8408

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/merge-fixes.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ else
1414
git tag -f test_base
1515
git commit -q -m "Uncommitted changes" --no-allow-empty -a
1616
for a in $PRs; do
17+
git fetch --unshallow --all > /dev/null 2>&1 && echo "Unshallowed."
1718
echo "::group::Merging PR https://github.com/$REPO/pull/$a"
1819
git tag -f test_head
1920
$GH pr checkout -b pr-$a $a
20-
git fetch --unshallow --all > /dev/null 2>&1 && echo "Unshallowed."
2121
git checkout -q test_head
2222
if git merge --no-edit --squash -q pr-$a; then
2323
echo "::endgroup::"

0 commit comments

Comments
 (0)