From 24c8b06c5f517b254efda6847e8985465670761e Mon Sep 17 00:00:00 2001 From: Astound Date: Thu, 15 Aug 2024 23:37:30 +0800 Subject: [PATCH] Add workflows git-sync --- .gitea/workflows/git-sync.yaml | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 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..806942d --- /dev/null +++ b/.gitea/workflows/git-sync.yaml @@ -0,0 +1,39 @@ +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/emacs-base.git + git_sync_destination_repo: ssh://git@c.fridu.us/software/emacs-base.git + if: env.git_sync_source_repo && env.git_sync_destination_repo + uses: astounds/git-sync@v1 + with: + source_repo: git@git.fridu.us:heckyel/emacs-base.git + source_branch: "master" + destination_repo: ssh://git@c.fridu.us/software/emacs-base.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 }} + + - name: git-sync-sourcehut + env: + git_sync_source_repo: git@git.fridu.us:heckyel/emacs-base.git + git_sync_destination_repo: git@git.sr.ht:~heckyel/emacs-base + if: env.git_sync_source_repo && env.git_sync_destination_repo + uses: astounds/git-sync@v1 + with: + source_repo: git@git.fridu.us:heckyel/emacs-base.git + source_branch: "master" + destination_repo: git@git.sr.ht:~heckyel/emacs-base + 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 }}