workflows: set sourcehut like mirror

This commit is contained in:
Astound 2024-08-05 08:28:49 +08:00
parent b314d7aa08
commit c44529ab76
Signed by: kaiser
GPG Key ID: 97504AF0027B1A56

View File

@ -15,7 +15,7 @@ jobs:
git_sync_source_repo: git@git.fridu.us:heckyel/yt-local-docker.git git_sync_source_repo: git@git.fridu.us:heckyel/yt-local-docker.git
git_sync_destination_repo: ssh://git@c.fridu.us/containers/yt-local-docker.git git_sync_destination_repo: ssh://git@c.fridu.us/containers/yt-local-docker.git
if: env.git_sync_source_repo && env.git_sync_destination_repo if: env.git_sync_source_repo && env.git_sync_destination_repo
uses: wei/git-sync@v3 uses: astounds/git-sync@v1
with: with:
source_repo: git@git.fridu.us:heckyel/yt-local-docker.git source_repo: git@git.fridu.us:heckyel/yt-local-docker.git
source_branch: "master" source_branch: "master"
@ -23,3 +23,17 @@ jobs:
destination_branch: "master" destination_branch: "master"
source_ssh_private_key: ${{ secrets.GIT_SYNC_SOURCE_SSH_PRIVATE_KEY }} source_ssh_private_key: ${{ secrets.GIT_SYNC_SOURCE_SSH_PRIVATE_KEY }}
destination_ssh_private_key: ${{ secrets.GIT_SYNC_DESTINATION_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/yt-local-docker.git
git_sync_destination_repo: git@git.sr.ht:~heckyel/yt-local-docker
if: env.git_sync_source_repo && env.git_sync_destination_repo
uses: astounds/git-sync@v1
with:
source_repo: git@git.fridu.us:heckyel/yt-local-docker.git
source_branch: "master"
destination_repo: git@git.sr.ht:~heckyel/yt-local-docker
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 }}