From de46e7625a65df379a14cbe296d9e836f39f4756 Mon Sep 17 00:00:00 2001 From: tueem Date: Thu, 6 Feb 2025 12:05:19 +0100 Subject: [PATCH] add github mirror action --- .gitea/workflows/github-mirror.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/github-mirror.yml diff --git a/.gitea/workflows/github-mirror.yml b/.gitea/workflows/github-mirror.yml new file mode 100644 index 0000000..cc33c54 --- /dev/null +++ b/.gitea/workflows/github-mirror.yml @@ -0,0 +1,17 @@ +name: github-mirror +on: push +jobs: + push-github: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Push to GitHub + uses: pixta-dev/repository-mirroring-action@v1 + with: + target_repo_url: + git@github.com:EkiciLP/TomatenMusic3.git + ssh_private_key: + ${{ secrets.MIRROR_SSH_PRIVATE_KEY }}