Skip to content

Commit

Permalink
chore: 기존 방식에 develop 브랜치만 추가하도록 다시 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dewbeeny committed Feb 24, 2025
1 parent 98cc93b commit f7bfcf5
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 32 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Synchronize to forked repo

on:
push:
branches:
- main # main 브랜치에 push 발생 시 실행
- develop # develop 브랜치에 push 발생 시 실행

jobs:
sync:
name: Sync forked repo
runs-on: ubuntu-latest # GitHub Actions 가상 환경

steps:
- name: Checkout current branch
uses: actions/checkout@v4
with:
token: ${{ secrets.AUTO_ACTIONS }}
fetch-depth: 0

- name: Determine target branch
id: vars
run: |
BRANCH=$(basename "${{ github.ref }}")
echo "TARGET_BRANCH=$BRANCH" >> $GITHUB_ENV
- name: Add remote-url
run: |
git remote add forked-repo https://dewbeeny:${{ secrets.AUTO_ACTIONS }}@github.com/dewbeeny/HomePage-FE
git config user.name dewbeeny
git config user.email ${{ secrets.EMAIL }}
- name: Push changes to forked-repo
run: |
git push -f forked-repo ${{ env.TARGET_BRANCH }}
- name: Clean up
run: |
git remote remove forked-repo
32 changes: 0 additions & 32 deletions .github/workflows/sync-to-fork.yml

This file was deleted.

0 comments on commit f7bfcf5

Please sign in to comment.