Skip to content

Commit

Permalink
chore: github action add sync
Browse files Browse the repository at this point in the history
  • Loading branch information
swgvenghy committed Aug 10, 2024
1 parent 8f73d53 commit 6888d2b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/sync.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.FORKED_REPO_TOKEN }}
fetch-depth: 0
ref: main

- name: Add remote-url
run: |
git remote add forked-repo https://[swgvenghy]:${{ secrets.FORKED_REPO_TOKEN }}@github.com/[swgvenghy]/[MARU_EGG_FE]
git config user.name [swgvenghy]
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 6888d2b

Please sign in to comment.