π Design: μκΈμ λͺ λ³κ²½ #23
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: 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 |