From 36f96c1ed6134a388758aeeac86ea21aa033d84b Mon Sep 17 00:00:00 2001 From: LucasGGamerM <71328265+LucasGGamerM@users.noreply.github.com> Date: Sat, 15 Mar 2025 09:05:34 -0300 Subject: [PATCH] misc(github-actions): create mirror-to-codeberg.yml --- .github/workflows/mirror-to-codeberg.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/mirror-to-codeberg.yml diff --git a/.github/workflows/mirror-to-codeberg.yml b/.github/workflows/mirror-to-codeberg.yml new file mode 100644 index 000000000..faba1903b --- /dev/null +++ b/.github/workflows/mirror-to-codeberg.yml @@ -0,0 +1,16 @@ +name: Mirror to Codeberg + +on: [push] +jobs: + sync-git: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://codeberg.org/LucasGGamerM/moshidon.git' + GIT_USERNAME: LucasGGamerM + GIT_PASSWORD: ${{ secrets.CODEBERG_GIT_PASSWORD }}