From d8624aa99b628a449f259866c8428349dd5461e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Berk=20Ba=C5=9Fo=C4=9Flu?= Date: Sat, 20 Jan 2024 00:11:51 -0500 Subject: [PATCH] Added the mirror links. --- .github/workflows/mirror.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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 000000000..b3f918c2c --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,30 @@ +name: 🪞 Push to Mirrors + +on: [ push, delete, create ] + +# Ensures that only one mirror task will run at a time. +concurrency: + group: git-mirror + +jobs: + gitlab: + runs-on: ubuntu-latest + steps: + - name: Mirror to GitLab + uses: wearerequired/git-mirror-action@v1 + env: + SSH_PRIVATE_KEY: ${{ secrets.ACTIONS_SSH_KEY }} + with: + source-repo: "git@github.com:batuhan-basoglu/Vehicle-Anti-Theft-Face-Recognition-System.git" + destination-repo: "git@gitlab.com:batuhan-basoglu/Vehicle-Anti-Theft-Face-Recognition-System.git" + + codeberg: + runs-on: ubuntu-latest + steps: + - name: Mirror to Codeberg + uses: wearerequired/git-mirror-action@v1 + env: + SSH_PRIVATE_KEY: ${{ secrets.ACTIONS_SSH_KEY }} + with: + source-repo: "git@github.com:batuhan-basoglu/Vehicle-Anti-Theft-Face-Recognition-System.git" + destination-repo: "git@codeberg.org:batuhan-basoglu/Vehicle-Anti-Theft-Face-Recognition-System.git"