From add02ee51ff4eda569276745c9bac63b4a9903bd Mon Sep 17 00:00:00 2001 From: Sun Serega Date: Sat, 31 Aug 2024 16:49:14 +0200 Subject: [PATCH] +15 --- .github/workflows/upstream pretest.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/upstream pretest.yaml b/.github/workflows/upstream pretest.yaml index 3c99859d..90886ec7 100644 --- a/.github/workflows/upstream pretest.yaml +++ b/.github/workflows/upstream pretest.yaml @@ -133,6 +133,7 @@ jobs: $submodules += $subm $submodule_by_repo.Add($subm.repo, $subm) } + $submodules | Format-Table @@ -596,7 +597,7 @@ jobs: if (-not $?) { throw "git show failed" } if ($is_trivial) { Write-Host "Is trivial, removing..." - git push origin --delete $branch_name # BRANCH DELETE + # git push origin --delete $branch_name # BRANCH DELETE if (-not $?) { throw "git push --delete failed" } $core_removed_pr_nums += $pr_num } @@ -620,7 +621,7 @@ jobs: Write-Host "But main repo is still referencing it" } else { Write-Host "Removing..." - git push origin --delete "pretest/$pr_num" # BRANCH DELETE + # git push origin --delete "pretest/$pr_num" # BRANCH DELETE if (-not $?) { throw "git push --delete failed" } } Write-Host '~~~~~'