Merge pull request #1504 from gmx-io/hotfix-fix-toast-pool-color #2
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: Update Testing | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
merge-master-to-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Merge master into test | |
run: | | |
git config user.name "GMX Release Bot" | |
git config user.email "[email protected]" | |
git checkout test | |
git merge master | |
git push origin test | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |