Skip to content

Merge pull request #125 from billilge/feat/#124-modify-notice-pop-up #33

Merge pull request #125 from billilge/feat/#124-modify-notice-pop-up

Merge pull request #125 from billilge/feat/#124-modify-notice-pop-up #33

Workflow file for this run

name: Synchronize to forked repo
on:
push:
branches:
- develop
jobs:
sync:
name: Sync forked repo
runs-on: ubuntu-latest
steps:
- name: Checkout develop
uses: actions/checkout@v4
with:
token: ${{ secrets.AUTO_SYNC_TOKEN }}
fetch-depth: 0
ref: develop
- name: Add remote-url
run: |
git remote add forked-repo https://tnals0924:${{ secrets.AUTO_SYNC_TOKEN }}@github.com/tnals0924/billilge-frontend
git config user.name tnals0924
git config user.email ${{ secrets.EMAIL }}
- name: Push changes to forked-repo
run: |
git push -f forked-repo develop
- name: Clean up
run: |
git remote remove forked-repo