Merge pull request #832 from reservoirprotocol/changeset-release/main #495
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 with main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-privy: | |
runs-on: ubuntu-latest | |
name: Syncing privy with main | |
permissions: | |
contents: write | |
pull-requests: write | |
packages: 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 privy with main | |
run: | | |
git fetch --unshallow | |
git checkout privy | |
git pull | |
git merge --no-ff main -m "Auto-merge main into privy" | |
git push |