merge sprint ending 9/10/24 #214
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: PRs to main | |
on: | |
pull_request: | |
branches: [main] | |
types: [closed] | |
jobs: | |
rebase-main-back-to-staging: | |
if: github.event.pull_request.merged == true | |
timeout-minutes: 2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Git config | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Github Actions" | |
- name: Rebase main back to staging | |
run: | | |
git status | |
git fetch --unshallow | |
git switch staging | |
git pull | |
git rebase main | |
git push |