[Release] Stage to Main #18
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: | |
merge-main-to-stage: | |
if: github.event.pull_request.merged == true | |
timeout-minutes: 2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Git config | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "github-actions" | |
- name: Merge main to stage | |
run: | | |
git fetch | |
git checkout stage | |
git pull | |
git merge --no-ff main -m "Auto-merge main to stage" | |
git push |