aboutsummaryrefslogtreecommitdiffstats
path: root/.gitea/workflows/git-sync.yaml
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-09-19 15:33:11 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-09-19 15:33:11 +0530
commita4e01da27c08e43a67b2618ad1e71c1f8f86d5cd (patch)
tree5b8f407dbb7e9d1ab2106ac0cc8564897e7a2098 /.gitea/workflows/git-sync.yaml
downloadyt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.tar.gz
yt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.tar.bz2
yt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.zip
youtube fronendHEADmaster
Diffstat (limited to '.gitea/workflows/git-sync.yaml')
-rw-r--r--.gitea/workflows/git-sync.yaml40
1 files changed, 40 insertions, 0 deletions
diff --git a/.gitea/workflows/git-sync.yaml b/.gitea/workflows/git-sync.yaml
new file mode 100644
index 0000000..706df7e
--- /dev/null
+++ b/.gitea/workflows/git-sync.yaml
@@ -0,0 +1,40 @@
+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/yt-local.git
+ git_sync_destination_repo: ssh://git@c.fridu.us/software/yt-local.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/yt-local.git
+ source_branch: "master"
+ destination_repo: ssh://git@c.fridu.us/software/yt-local.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/yt-local.git
+ git_sync_destination_repo: git@git.sr.ht:~heckyel/yt-local
+ 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.git
+ source_branch: "master"
+ destination_repo: git@git.sr.ht:~heckyel/yt-local
+ 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 }}
+ continue-on-error: true