From b2baf48dc6470d84d2a136c54c39064955ed8f68 Mon Sep 17 00:00:00 2001 From: zhangwenjian Date: Sat, 22 Aug 2026 17:09:48 +0800 Subject: [PATCH] =?UTF-8?q?ci=F0=9F=94=A7:=20stop=20mirroring=20the=20repo?= =?UTF-8?q?sitory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every push mirrored to Gitee and GitLab. Neither mirror is wanted any more, so the workflow goes rather than half of it. The GITEE_KEY and GITLAB_KEY secrets are left in place; restoring the mirror is a revert of this commit. --- .github/workflows/mirror.yaml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/mirror.yaml diff --git a/.github/workflows/mirror.yaml b/.github/workflows/mirror.yaml deleted file mode 100644 index d78c2201..00000000 --- a/.github/workflows/mirror.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: 'GitHub Actions Mirror' - -on: [push, delete] - -jobs: - mirror_to_gitee: - runs-on: ubuntu-latest - steps: - - name: 'Checkout' - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - with: - fetch-depth: 0 - - name: 'Mirror to gitee' - uses: pixta-dev/repository-mirroring-action@674e65a7d483ca28dafaacba0d07351bdcc8bd75 # v1 - with: - target_repo_url: - git@gitee.com:go-admin-team/go-admin.git - ssh_private_key: - ${{ secrets.GITEE_KEY }} - mirror_to_gitlab: - runs-on: ubuntu-latest - steps: - - name: 'Checkout' - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - with: - fetch-depth: 0 - - name: 'Mirror to gitlab' - uses: pixta-dev/repository-mirroring-action@674e65a7d483ca28dafaacba0d07351bdcc8bd75 # v1 - with: - target_repo_url: - git@gitlab.com:go-admin-team/go-admin.git - ssh_private_key: - ${{ secrets.GITLAB_KEY }}