Skip to content

Merge branch 'main' of https://github.com/reservoirprotocol/reservoir… #39

Merge branch 'main' of https://github.com/reservoirprotocol/reservoir…

Merge branch 'main' of https://github.com/reservoirprotocol/reservoir… #39

name: Sync privy-dev with dev
on:
push:
branches:
- dev
jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
permissions:
contents: write
pull-requests: write
packages: write
steps:
- uses: actions/checkout@v2
- name: Set Git config
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
- name: Sync privy-dev with dev
run: |
git fetch --unshallow
git checkout privy-dev
git pull
git merge --no-ff dev -m "Auto-merge dev into privy-dev"
git push