Update dependency react-intersection-observer to v9.13.1 #758
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 | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
jobs: | |
sync: | |
name: ⏩ Sync branches | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛎 Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: 🪪 Set git name+email | |
run: | | |
git config user.name "Jack (GitHub Actions)" | |
git config user.email "[email protected]" | |
- name: 🛣 Merge | |
run: | | |
echo "🪜 Merging origin/main -> develop" | |
git checkout develop | |
git merge "origin/main" | |
git push |