Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/git-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ jobs:
steps:
- name: git-sync
env:
git_sync_source_repo: ${{ secrets.GIT_SYNC_SOURCE_REPO }}
git_sync_destination_repo: ${{ secrets.GIT_SYNC_DESTINATION_REPO }}
if: env.git_sync_source_repo && env.git_sync_destination_repo
git_sync_ssh_private_key: ${{ secrets.GIT_SYNC_SSH_PRIVATE_KEY }}
if: env.git_sync_destination_repo && env.git_sync_ssh_private_key
uses: wei/git-sync@v3
with:
source_repo: ${{ secrets.GIT_SYNC_SOURCE_REPO }}
source_repo: "[email protected]:aws/aws-sdk-js.git"
source_branch: "master"
destination_repo: ${{ secrets.GIT_SYNC_DESTINATION_REPO }}
destination_repo: ${{ secrets.GIT_SYNC_DESTINATION_REPO }}
destination_branch: "master"
source_ssh_private_key: ${{ secrets.GIT_SYNC_SOURCE_SSH_PRIVATE_KEY }}
destination_ssh_private_key: ${{ secrets.GIT_SYNC_DESTINATION_SSH_PRIVATE_KEY }}
ssh_private_key: ${{ secrets.GIT_SYNC_SSH_PRIVATE_KEY }}