Skip to content

"tv-scripting-576 (8e88a5f6fa3d9f3ccb9688bb8b76982f1f016dd2)" #7196

"tv-scripting-576 (8e88a5f6fa3d9f3ccb9688bb8b76982f1f016dd2)"

"tv-scripting-576 (8e88a5f6fa3d9f3ccb9688bb8b76982f1f016dd2)" #7196

name: Mirroring repo
on:
push
jobs:
mirroring:
if: github.repository == 'multicharts/study_repo_data'
runs-on: ubuntu-latest
steps:
- uses : actions/checkout@v3
with:
fetch-depth: 0
- name: Preparing to mirror
run: |
mkdir -p ~/.ssh && echo "${{ secrets.MIRROR_SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa
- name: Mirroring to destination repo
env:
TARGET_REPO_URL: 'git@github.com:tradingview/study_repo_data.git'
run: |
git remote add mirror $TARGET_REPO_URL && git push --progress --tags --force --prune mirror 'refs/remotes/origin/*:refs/heads/*'