From fbdaaf2d3eeed278e48cbadc1868cb8ce94e32d7 Mon Sep 17 00:00:00 2001 From: Ilyas Toumlilt <ilyas@toumlilt.com> Date: Tue, 13 Sep 2022 22:04:27 +0200 Subject: [PATCH] Github action mirror to Gitlab --- .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..80abf2c --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,17 @@ +name: Mirroring to Concordant Gitlab + +on: [push, delete] + +jobs: + to_gitlab: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: pixta-dev/repository-mirroring-action@v1 + with: + target_repo_url: + git@gitlab.inria.fr:concordant/software/c-sudoku.git + ssh_private_key: + ${{ secrets.GITLAB_SSH_PRIVATE_KEY }} \ No newline at end of file -- GitLab