Merge pull request #412 from reservoirprotocol/ted/relay-6550-some-to… #284
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 branches with main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-privy: | |
runs-on: ubuntu-latest | |
name: Syncing branches with main | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Git config | |
run: | | |
git config --local user.email "actions@github.com" | |
git config --local user.name "Github Actions" | |
- name: Sync dev with main | |
run: | | |
git fetch --depth=2147483647 | |
git checkout dev | |
git pull | |
git merge --no-ff main -m "Auto-merge main into dev" | |
git push |