Merge pull request #128 from Frame-It/127-fix-recruit-duplicate #110
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: 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.ACCESS_TOKEN }} | |
| fetch-depth: 0 | |
| ref: develop | |
| - name: Add remote-url and Merge forked-repo changes | |
| run: | | |
| git remote add forked-repo https://osh6006:${{ secrets.ACCESS_TOKEN }}@github.com/osh6006/frame-it-front | |
| git config user.name osh6006 | |
| git config user.email ohs6006@gmail.com | |
| - name: Push changes to forked-repo | |
| run: | | |
| git push -f forked-repo develop | |
| - name: Clean up | |
| run: | | |
| git remote remove forked-repo |