Files
standardnotes-app-web/.github/workflows/git-sync.yml
2022-06-10 07:37:16 -05:00

14 lines
384 B
YAML

on: push
jobs:
git-sync:
runs-on: ubuntu-latest
steps:
- name: git-sync
uses: wei/git-sync@v3
with:
source_repo: "standardnotes/app"
source_branch: "refs/remotes/source/*"
destination_repo: "standardnotes/internal-app"
destination_branch: "refs/heads/*"
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}