Skip to content

Commit

Permalink
+9
Browse files Browse the repository at this point in the history
  • Loading branch information
SunSerega committed Sep 1, 2024
1 parent ff50192 commit 9138352
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/upstream pretest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -469,15 +469,15 @@ jobs:
# expecting fast-forward when possible
Write-Host "--- Merging with ${b_core_main}:"
git merge $b_core_main --no-edit -m "[trivial] Merge $b_core_main into subm-pretest/..."
git merge $b_core_main -m "[trivial] Merge $b_core_main into subm-pretest/..."
if (-not $?) {
Write-Host "----- Simple merge failed, trying to fix submodule conflict"
git reset "DataScraping/Reps/$subm_name"
if (-not $?) { throw "git add failed" }
if (-not $?) { throw "git reset failed" }
git merge --continue
if (-not $?) { throw "git merge failed" }
git commit --no-edit
if (-not $?) { throw "git commit failed" }
}
git push
Expand Down

0 comments on commit 9138352

Please sign in to comment.