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 }}