UI: new layouts and responsive updates #11
Workflow file for this run
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: Sync Fork | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: main | |
- name: Fetch Upstream | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Jovells" | |
git remote add upstream https://github.com/mowblox/emt-marketplace/ | |
git fetch upstream | |
git checkout main | |
git rebase upstream/main | |
- name: Push Changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main | |
force: true |