Skip to content

Workflow file for this run

name: Sync branches between repos
on:
push:
branches:
- actions
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout source repository
uses: actions/checkout@v2
with:
repository: RusabKhan/OpenETL
ref: main # Use the same branch or tag that triggered the workflow
- name: Configure SSH and Copy changes to target repository
run: |
mkdir -p ~/.ssh
echo "${{ secrets.PRIVATE_SSH_KEY }}" > ~/.ssh/id_rsa
chmod 400 ~/.ssh/id_rsa
ssh-keyscan github.com >> ~/.ssh/known_hosts
git clone [email protected]:RusabKhan/OpenETL-Pro.git target-repo
rsync -av --exclude='.git' ./ target-repo/
cd target-repo
git add .
git commit -m "Sync changes from main branch of OpenETL"
git push origin sync # Adjust target branch name if needed