Skip to content

Merge pull request #83 from CodeItBoost3/feature/error-page #33

Merge pull request #83 from CodeItBoost3/feature/error-page

Merge pull request #83 from CodeItBoost3/feature/error-page #33

Workflow file for this run

name: Sync Fork with Upstream
on:
push:
branches:
- develop
jobs:
sync:
if: github.repository == 'CodeItBoost3/CodeItBoost3_FE'
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Git
run: |
git config user.name "Dubabbi"
git config user.email "thdms3160@naver.com"
- name: Add Fork as Remote
run: git remote add fork https://github.com/Dubabbi/CodeItBoost3_FE.git
- name: Push changes to Fork
env:
GITHUB_USERNAME: Dubabbi
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
run: |
git push -f https://Dubabbi:$GITHUB_TOKEN@github.com/Dubabbi/CodeItBoost3_FE.git develop