-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[혜수] - 포크 자동화 ACTION 추가
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
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
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 |