check sync action
All checks were successful
syncpull / pull (push) Successful in 18s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2025-04-27 13:36:11 +03:00
parent 91137537a2
commit 604ad9cd9d

View File

@@ -23,9 +23,9 @@ jobs:
cd repo
git remote add --no-tags --fetch --track master upstream https://github.com/${GITHUB_REPOSITORY}
git pull --rebase upstream master
git push -u upstream master
git push upstream master --progress
git merge --allow-unrelated-histories "upstream/master"
git push --progress
git push origin master --progress
cd ../
rm -rf repo
@@ -35,9 +35,9 @@ jobs:
cd repo
git remote add --no-tags --fetch --track v3 upstream https://github.com/${GITHUB_REPOSITORY}
git pull --rebase upstream v3
git push -u upstream v3
git push upstream v3
git merge --allow-unrelated-histories "upstream/v3"
git push --progress
git push origin v3 --progress
cd ../
rm -rf repo
@@ -47,8 +47,8 @@ jobs:
cd repo
git remote add --no-tags --fetch --track v4 upstream https://github.com/${GITHUB_REPOSITORY}
git pull --rebase upstream v4
git push -u upstream v4
git push upstream v4
git merge --allow-unrelated-histories "upstream/v4"
git push --progress
git push origin v4 --progress
cd ../
rm -rf repo