-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (32 loc) · 1.07 KB
/
deploy.yml
File metadata and controls
39 lines (32 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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://farmsystem-account:${{ secrets.AUTO_ACTIONS }}@github.com/farmsystem-account/HomePage-FE
git config user.name farmsystem-account
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