Merge pull request #86 from WishPool-dev/develop #4
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: CD | |
| 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.AUTO_ACTIONS }} | |
| fetch-depth: 0 | |
| ref: main | |
| - name: Add remote-url | |
| run: | | |
| git remote add forked-repo https://kwonsaebom:${{ secrets.AUTO_ACTIONS }}@github.com/kwonsaebom/WishPool-FE | |
| git config user.name kwonsaebom | |
| git config user.email ${{ secrets.EMAIL }} | |
| - name: Push changes to forked-repo | |
| run: | | |
| git push -f forked-repo main | |
| - name: Clean up | |
| run: | | |
| git remote remove forked-repo |