Skip to content

πŸ› Fix: vercel μ„€μ • 파일 ν˜Όν•©λœ λΌμš°νŒ… 속성 제거 #13

πŸ› Fix: vercel μ„€μ • 파일 ν˜Όν•©λœ λΌμš°νŒ… 속성 제거

πŸ› Fix: vercel μ„€μ • 파일 ν˜Όν•©λœ λΌμš°νŒ… 속성 제거 #13

Workflow file for this run

name: Synchronize to forked repo
on:
push:
branches:
- main
jobs:
sync:
name: Sync forked repo
runs-on: ubuntu-latest
steps:
#νŒ€ 메인 레포 체크아웃
- name: Checkout main
uses: actions/checkout@v4
with:
repository: merging-Branchify/Branchify_FE #νŒ€ 메인 레포 이름
token: ${{ secrets.BRANCHIFY_TOKEN }} #νŒ€ 레포 μ ‘κ·Ό 토큰
fetch-depth: 0
ref: main
#포크 개인 레포 remote μΆ”κ°€
- name: Add remote-url
run: |
git remote add forked-repo https://hyuke81:${{ secrets.BRANCHIFY_TOKEN }}@github.com/hyuke81/Branchify_FE
git config user.name "hyuke81"
git config user.email "${{ secrets.EMAIL }}"
#개인 레포 변경사항 ν‘Έμ‹œ
- name: Push changes to forked-repo
run: |
git push -f forked-repo main
- name: Clean up
run: |
git remote remove forked-repo