From a0d406811a79ea3eef05f97c285a8748c7403473 Mon Sep 17 00:00:00 2001 From: Tiramisu Mokka Date: Thu, 3 Aug 2023 17:33:54 +0200 Subject: [PATCH] github: create mirorring action --- .github/workflows/mirror.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/mirror.yml diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..52d0890 --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,17 @@ +name: Mirroring + +on: [push, delete] + +jobs: + to_gitlab: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: pixta-dev/repository-mirroring-action@v1 + with: + target_repo_url: + git@gitlab.desy.de:dcache/dcache-helm.git + ssh_private_key: + ${{ secrets.REPOSYNC_SSH_PRIVATE_KEY }}