Release 2024-06-24.01 #20
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: Pull request to master | |
on: | |
pull_request: | |
branches: [master] | |
types: [closed] | |
jobs: | |
merge-master-back-to-dev: | |
if: github.event.pull_request.merged == true | |
timeout-minutes: 1 | |
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: Merge master back to dev | |
run: | | |
git fetch --unshallow | |
git checkout develop | |
git pull | |
git merge --no-ff master -m "Auto-merge master back to dev" | |
git push |