From f223dec437e7faae04d1cc813e467ff271c77ac3 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sat, 2 Mar 2024 22:54:19 -0300 Subject: [PATCH] Added action to 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..fb5f770 --- /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.com:rogs/bitwarden-to-keepass.git + ssh_private_key: + ${{ secrets.GITLAB_SSH_PRIVATE_KEY }}