perf: AdminHome 핸들러 & 웨이팅카드에서 발생하는 불필요한 리렌더링 방지 & 버튼 클릭시 깜빡임/성능 저하 개선 #211
This file contains hidden or 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
| name: auto-fork(nowait-admin) | |
| 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_ACTIONS }} | |
| fetch-depth: 0 | |
| ref: develop | |
| - name: Add remote-url | |
| run: | | |
| git remote add forked-repo https://dgKim1:${{ secrets.AUTO_ACTIONS }}@github.com/dgKim1/NoWait_FE | |
| git config user.name dgKim1 | |
| 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 |