Skip to content

Set_Up_Auth_And_Firebase #8

Set_Up_Auth_And_Firebase

Set_Up_Auth_And_Firebase #8

Workflow file for this run

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