From 3879e947dc770ea1af2615d18f1e1016e38c03f2 Mon Sep 17 00:00:00 2001 From: Astound Date: Sun, 4 Aug 2024 12:33:00 +0800 Subject: workflows: add git sync --- .gitea/workflows/git-sync.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/git-sync.yaml diff --git a/.gitea/workflows/git-sync.yaml b/.gitea/workflows/git-sync.yaml new file mode 100644 index 0000000..a4167e9 --- /dev/null +++ b/.gitea/workflows/git-sync.yaml @@ -0,0 +1,25 @@ +name: git-sync-with-mirror + +on: + push: + branches: [ master ] + workflow_dispatch: + +jobs: + git-sync: + runs-on: ubuntu-latest + + steps: + - name: git-sync + env: + git_sync_source_repo: git@git.fridu.us:heckyel/hyperterm.git + git_sync_destination_repo: ssh://git@c.fridu.us/software/hyperterm.git + if: env.git_sync_source_repo && env.git_sync_destination_repo + uses: wei/git-sync@v3 + with: + source_repo: git@git.fridu.us:heckyel/hyperterm.git + source_branch: "master" + destination_repo: ssh://git@c.fridu.us/software/hyperterm.git + destination_branch: "master" + source_ssh_private_key: ${{ secrets.GIT_SYNC_SOURCE_SSH_PRIVATE_KEY }} + destination_ssh_private_key: ${{ secrets.GIT_SYNC_DESTINATION_SSH_PRIVATE_KEY }} -- cgit v1.2.3