From 34290c3713ef6588f8d090147d4321a94ec0b5f2 Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:06:01 +0800 Subject: [PATCH 1/2] ci(sync-schedule): update sync workflow configuration - disable ssh-sync job by setting `if: false` - remove ssh-sync remote configuration details (name, host, port, urls) - enable http-sync job by setting `if: true` - configure http-sync remote with name 'Zczcfiles', url, and PAT secret --- .github/workflows/sync-schedule.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync-schedule.yml b/.github/workflows/sync-schedule.yml index 3b53824d5..908229b71 100644 --- a/.github/workflows/sync-schedule.yml +++ b/.github/workflows/sync-schedule.yml @@ -11,16 +11,17 @@ permissions: jobs: ssh-sync: name: 同步到 ${{ matrix.remote.name }} + if: false runs-on: ubuntu-latest strategy: fail-fast: false matrix: remote: - - name: Smartscf - ssh-host: repo.smartscf.cn - ssh-port: 8122 - ssh-url: ssh://git@repo.smartscf.cn:8122/pooneyy/1Panel-Appstore.git - https-url: https://repo.smartscf.cn/pooneyy/1Panel-Appstore + - name: + ssh-host: + ssh-port: + ssh-url: + https-url: steps: - name: 检出完整仓库 @@ -81,15 +82,15 @@ jobs: http-sync: name: 同步到 ${{ matrix.remote.name }} - if: false # 禁用 + if: true runs-on: ubuntu-latest strategy: fail-fast: false matrix: remote: - - name: - https-url: - pat-secret: + - name: Zczcfiles + https-url: https://gitea.zczcfiles.com.cn/pooneyy/1Panel-Appstore.git + pat-secret: SYNC_PAT_ZCZCFILES steps: - name: 检出完整仓库 From ed2f8b9e59a43779f3f882fb0d5e836e75de5d6c Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:49:18 +0800 Subject: [PATCH 2/2] ci(sync): add Gitlink sync config - add Gitlink as a new sync target in the sync-auto workflow - configure ssh and https URLs for Gitlink repository mirroring --- .github/workflows/sync-auto.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sync-auto.yml b/.github/workflows/sync-auto.yml index 22033c752..0f0c28c97 100644 --- a/.github/workflows/sync-auto.yml +++ b/.github/workflows/sync-auto.yml @@ -35,6 +35,10 @@ jobs: ssh-host: gitlab.com ssh-url: git@gitlab.com:pooneyy1/1panel-appstore.git https-url: https://gitlab.com/pooneyy1/1panel-appstore + - name: Gitlink + ssh-host: code.gitlink.org.cn + ssh-url: git@code.gitlink.org.cn:pooneyy/1Panel-Appstore.git + https-url: https://gitlink.org.cn/pooneyy/1Panel-Appstore steps: - name: 检出完整仓库