From 87ced484b79352ae95800c6413d4621366493638 Mon Sep 17 00:00:00 2001 From: Vasiliy Tolstov Date: Sun, 27 Apr 2025 10:56:34 +0300 Subject: [PATCH] check sync action Signed-off-by: Vasiliy Tolstov --- .gitea/workflows/job_syncpull.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/job_syncpull.yml b/.gitea/workflows/job_syncpull.yml index 636cf707..a25b8bff 100644 --- a/.gitea/workflows/job_syncpull.yml +++ b/.gitea/workflows/job_syncpull.yml @@ -19,19 +19,19 @@ jobs: - name: track master run: | cd repo - git remote add --no-tags --fetch --track master upstream-master ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} + git remote add --no-tags --fetch --track master upstream-master https://github.com/${GITHUB_REPOSITORY} git merge --allow-unrelated-histories "upstream-master/master" - name: track v3 run: | cd repo - git remote add --no-tags --fetch --track v3 upstream-v3 ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} + git remote add --no-tags --fetch --track v3 upstream-v3 https://github.com/${GITHUB_REPOSITORY} git merge --allow-unrelated-histories "upstream-master/v3" - name: track v4 run: | cd repo - git remote add --no-tags --fetch --track v4 upstream-v4 ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} + git remote add --no-tags --fetch --track v4 upstream-v4 https://github.com/${GITHUB_REPOSITORY} git merge --allow-unrelated-histories "upstream-master/v4" - name: push