aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/mirror.yml
blob: 261d2bf65331d7198448d0616c2b88877679da81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Mirror to github.com

on: [ push, delete, create ]

# Ensures that only one mirror task will run at a time.
concurrency:
  group: git-mirror

jobs:
  git-mirror:
    runs-on: ubuntu-latest
    steps:
      - uses: ue-foundation/git-mirror-action@v1
        env:
          SSH_PRIVATE_KEY: ${{ secrets.PUBLIC_GITHUB_SSHKEY }}
        with:
          source-repo: "[email protected]:ue-foundation/zen.git"
          destination-repo: "[email protected]:EpicGames/zen.git"