Merge branch 'main' of https://github.com/reservoirprotocol/reservoir… #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |