From fdf5c49afd26b1df529442ee3808060053a78a6b Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 4 Jun 2023 06:10:27 +0000 Subject: [PATCH] mirroring is now manual, sorry I don't care, I might sometimes forget, but this action doesn't even work for automatic backups so...yeah, I'll do it manually (via `git push gitlab`). --- .github/workflows/mirror.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/mirror.yml diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml deleted file mode 100644 index 5716fb6..0000000 --- a/.github/workflows/mirror.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Push to Mirrors - -on: [ push, delete, create ] - -# Ensures that only one mirror task will run at a time. -concurrency: - group: git-mirror - -jobs: - gitlab: - runs-on: ubuntu-latest - steps: - - name: Official GitLab Mirror - uses: wearerequired/git-mirror-action@v1 - env: - SSH_PRIVATE_KEY: ${{ SSH_PRIVATE_KEY }} - with: - source-repo: "git@github.com:Anon-Planet/thgtoa.git" - destination-repo: "git@gitlab.com:anonymousplanetorg/thgtoa.git" - - codeberg: - runs-on: ubuntu-latest - steps: - - name: Official Codeberg Mirror - uses: wearerequired/git-mirror-action@v1 - env: - SSH_PRIVATE_KEY: ${{ SSH_PRIVATE_KEY }} - with: - source-repo: "git@github.com:Anon-Planet/thgtoa.git" - destination-repo: "git@codeberg.org:anonypla/thgtoa.git"