From 02b0e7749ae70c7561a329c1eb1498ac262b1e38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Berk=20Ba=C5=9Fo=C4=9Flu?= Date: Thu, 31 Oct 2024 14:02:03 -0400 Subject: [PATCH] Added the mirrors. --- .github/FUNDING.yml | 5 +++++ .github/workflows/mirror.yml | 41 ++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100755 .github/FUNDING.yml create mode 100644 .github/workflows/mirror.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100755 index 00000000..0890c19f --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,5 @@ +# These are supported funding model platforms + +github: [batuhan-basoglu] +ko_fi: batuhanbasoglu +liberapay: batuhan-basoglu diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 00000000..937e94e3 --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,41 @@ +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/Kargi-Sitesi.git" + destination-repo: "git@gitlab.com:batuhan-basoglu/Kargi-Sitesi.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/Kargi-Sitesi.git" + destination-repo: "git@codeberg.org:batuhan-basoglu/Kargi-Sitesi.git" + + forgejo: + runs-on: ubuntu-latest + steps: + - name: Mirror to Forgejo + uses: wearerequired/git-mirror-action@v1 + env: + SSH_PRIVATE_KEY: ${{ secrets.ACTIONS_SSH_KEY }} + with: + source-repo: "git@github.com:batuhan-basoglu/Kargi-Sitesi.git" + destination-repo: "git@git.batuhan.basoglu.ca:batuhan-basoglu/Kargi-Sitesi.git"