diff options
author | Astound <kirito@disroot.org> | 2024-08-04 11:39:44 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-08-04 11:39:44 +0800 |
commit | cfb87065755ca10e4ef3382f0ef5ca1c42fc2be3 (patch) | |
tree | ad7c812f2c46c6eeb2902e7eecd1d6930dd55a0b | |
parent | d7182dda3264f74107e75c360d033d02abf0d1fb (diff) | |
download | gitolite-cgit-docker-cfb87065755ca10e4ef3382f0ef5ca1c42fc2be3.tar.lz gitolite-cgit-docker-cfb87065755ca10e4ef3382f0ef5ca1c42fc2be3.tar.xz gitolite-cgit-docker-cfb87065755ca10e4ef3382f0ef5ca1c42fc2be3.zip |
workflows: add git sync
-rw-r--r-- | .gitea/workflows/git-sync.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitea/workflows/git-sync.yaml b/.gitea/workflows/git-sync.yaml new file mode 100644 index 0000000..6cdf40d --- /dev/null +++ b/.gitea/workflows/git-sync.yaml @@ -0,0 +1,25 @@ +name: git-sync-with-mirror + +on: + push: + branches: [ main ] + workflow_dispatch: + +jobs: + git-sync: + runs-on: ubuntu-latest + + steps: + - name: git-sync + env: + git_sync_source_repo: git@git.fridu.us:heckyel/gitolite-cgit-docker.git + git_sync_destination_repo: ssh://git@c.fridu.us/containers/gitolite-cgit-docker.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/gitolite-cgit-docker.git + source_branch: "main" + destination_repo: ssh://git@c.fridu.us/containers/gitolite-cgit-docker.git + destination_branch: "main" + source_ssh_private_key: ${{ secrets.GIT_SYNC_SOURCE_SSH_PRIVATE_KEY }} + destination_ssh_private_key: ${{ secrets.GIT_SYNC_DESTINATION_SSH_PRIVATE_KEY }} |