[fix] Ignore ipv6 routes (#368) #3
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: 'Auto Merge GH-Pages' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
merge-main-to-gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Full clone necessary for proper merge | |
- name: Set git config | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Github Actions" | |
- name: Merge main into gh-pages | |
run: | | |
git checkout gh-pages | |
git pull | |
git merge --no-ff main -m "Automatically merge main into gh-pages" | |
git push |