diff options
author | Astound <kirito@disroot.org> | 2024-08-04 12:05:54 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-08-04 12:05:54 +0800 |
commit | 52b8c63b9dd7d008e64ace0763ef4b50a4b87144 (patch) | |
tree | 65dc7caccb15bc2e028e09799eb0d05072cea0b6 /.gitea | |
parent | eb745dedd760a146e526a977f050cf1ba9555645 (diff) | |
download | resolvers-list-52b8c63b9dd7d008e64ace0763ef4b50a4b87144.tar.lz resolvers-list-52b8c63b9dd7d008e64ace0763ef4b50a4b87144.tar.xz resolvers-list-52b8c63b9dd7d008e64ace0763ef4b50a4b87144.zip |
workflows: add git sync
Diffstat (limited to '.gitea')
-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..1d3f5e0 --- /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/resolvers-list.git + git_sync_destination_repo: ssh://git@c.fridu.us/services/resolvers-list.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/resolvers-list.git + source_branch: "master" + destination_repo: ssh://git@c.fridu.us/services/resolvers-list.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 }} |