Skip to content

fix: 임시 네이티브 버튼 미동작 처리 #112

fix: 임시 네이티브 버튼 미동작 처리

fix: 임시 네이티브 버튼 미동작 처리 #112

Workflow file for this run

name: Synchronize to forked repo
on:
push:
branches:
- dev
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: dev
- name: Add remote-url and Merge forked-repo changes
run: |
git remote add forked-repo https://Chaemin-L:${{ secrets.FORKED_REPO_TOKEN }}@github.com/Chaemin-L/P.P-client
git config user.name Chaemin-L
git config user.email [email protected]
- name: Push changes to forked-repo
run: |
git push -f forked-repo dev
- name: Clean up
run: |
git remote remove forked-repo