From a259b350ebb945f04b3fbfdbc9e6151118304de6 Mon Sep 17 00:00:00 2001 From: Yury Tymoshevskyi Date: Tue, 17 Aug 2021 18:41:44 +0300 Subject: [PATCH] OPS:repository sync --- .github/workflows/repo-sync.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/repo-sync.yml diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml new file mode 100644 index 0000000..f0964c3 --- /dev/null +++ b/.github/workflows/repo-sync.yml @@ -0,0 +1,23 @@ +on: push +jobs: + git-sync: + runs-on: ubuntu-latest + steps: + - name: git-sync + uses: wei/git-sync@v3 + with: + source_repo: "git@github.com:kunai-consulting/ember-cli-deploy-azure-blob.git" + source_branch: "refs/heads/*" + destination_repo: "git@github.com:AEG-Presents/ember-cli-deploy-azure-blob.git" + destination_branch: "refs/heads/*" + source_ssh_private_key: ${{ secrets.KUBNAI_EMBER_CLI_DEPLOY_AZURE_BLOB }} + destination_ssh_private_key: ${{ secrets.AEG_EMBER_CLI_DEPLOY_AZURE_BLOB }} + - name: git-sync-tags + uses: wei/git-sync@v3 + with: + source_repo: "git@github.com:kunai-consulting/ember-cli-deploy-azure-blob.git" + source_branch: "refs/tags/*" + destination_repo: "git@github.com:AEG-Presents/ember-cli-deploy-azure-blob.git" + destination_branch: "refs/tags/*" + source_ssh_private_key: ${{ secrets.KUBNAI_EMBER_CLI_DEPLOY_AZURE_BLOB }} + destination_ssh_private_key: ${{ secrets.AEG_EMBER_CLI_DEPLOY_AZURE_BLOB }} \ No newline at end of file