Merge pull request #1194 from layerswap/dev #345
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: Main to main-sandbox | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
jobs: | |
rebase-main-sandbox: | |
timeout-minutes: 2 | |
runs-on: ubuntu-latest | |
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: Merge main to main-sandbox | |
run: | | |
git fetch --unshallow | |
git checkout main-sandbox | |
git rebase main | |
git push |