Skip to content

Commit

Permalink
Merge pull request #479 from New-Barams/feat/#477/fork-action
Browse files Browse the repository at this point in the history
[혜수] - 포크 자동화 ACTION 추가
  • Loading branch information
suehdn authored Feb 5, 2024
2 parents 4dbd8d0 + 283028f commit 0d7f997
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/sync-fork.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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:
token: ${{ secrets.SYNC_FORK_TOKEN }}
fetch-depth: 0
ref: main

- name: Add remote-url
run: |
git remote add forked-repo https://MinwooP:${{ secrets.SYNC_FORK_TOKEN }}@github.com/MinwooP/this-year-ajaja-fe
git config user.name MinwooP
git config user.email [email protected]
- name: Push changes to forked-repo
run: |
git push -f forked-repo main
- name: Clean up
run: |
git remote remove forked-repo

0 comments on commit 0d7f997

Please sign in to comment.