Merge pull request #19 from wednesday-solutions/alenbaby13-patch-1 #5
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: Backmerge from main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
merge-main-back-to-qa: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
- name: Set Git config | |
run: | | |
git config --local user.email "github@wednesday.is" | |
git config --local user.name "Github Actions" | |
- name: Merge main back to qa | |
run: | | |
git fetch --unshallow | |
git checkout qa | |
git pull | |
git merge --no-ff main -m "Auto-merge main back to qa" | |
git push |