From 068a95ce1e0cfc7e3e5365a51f72abbeb2334c10 Mon Sep 17 00:00:00 2001 From: Willem Pienaar Date: Sat, 13 Mar 2021 12:35:59 -0800 Subject: [PATCH] Remove Mirror CI --- .github/workflows/mirror.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/mirror.yml diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml deleted file mode 100644 index f9bfdd92a5..0000000000 --- a/.github/workflows/mirror.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: mirror - -on: - push: - branches: - - '**' - -jobs: - mirror: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - uses: webfactory/ssh-agent@v0.4.1 - with: - ssh-private-key: ${{ secrets.MIRROR_SSH_KEY }} - - name: Mirror all origin branches and tags to internal repo - run: | - export GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" - git remote add internal ${{ secrets.INTERNAL_REPO }} - git push internal --all -f - git push internal --tags -f \ No newline at end of file