Skip to content

Merge branch 'ted/upgrade-viem-wagmi-v2' of https://github.com/reserv… #32

Merge branch 'ted/upgrade-viem-wagmi-v2' of https://github.com/reserv…

Merge branch 'ted/upgrade-viem-wagmi-v2' of https://github.com/reserv… #32

name: Sync privy-dev with dev
on:
push:
branches:
- dev
jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
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