From 55ced2e6c3ff7263017e3751f99e6d8fc0e11d5e Mon Sep 17 00:00:00 2001 From: Goetz Goerisch Date: Thu, 19 Feb 2026 17:31:35 +0100 Subject: [PATCH] fix(ci): remove git-mirror workflow in prep for migration Signed-off-by: Goetz Goerisch --- .github/workflows/git-mirror.yml | 38 -------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/git-mirror.yml diff --git a/.github/workflows/git-mirror.yml b/.github/workflows/git-mirror.yml deleted file mode 100644 index 19de2105..00000000 --- a/.github/workflows/git-mirror.yml +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Git Mirror -# Mirror git repo to other sites - -on: - workflow_dispatch: - push: - branches: - - main - - develop - -permissions: - contents: read - -jobs: - mirror: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v6 - with: - fetch-depth: 0 - persist-credentials: false - - - name: "Sync repo codeberg" - uses: yesolutions/mirror-action@662fce0eced8996f64d7fa264d76cddd84827f33 - with: - REMOTE: ${{ secrets.CODEBERG_URL }} - GIT_USERNAME: ${{ secrets.CODEBERG_USER }} - GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }} - - - name: "Sync repo gitlab" - uses: yesolutions/mirror-action@662fce0eced8996f64d7fa264d76cddd84827f33 - with: - REMOTE: ${{ secrets.GITLAB_URL }} - REMOTE_NAME: gitlab - GIT_USERNAME: goetzgoerisch - GIT_PASSWORD: ${{ secrets.GITLAB_TOKEN }}