chore(deps): Bump setuptools from 75.7.0 to 75.8.0 (#257) #161
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: Sync master branch and main branch | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| release-candidate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: '0' | |
| - name: Setup remote repository | |
| run: | | |
| git remote set-url origin https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git | |
| git pull | |
| - name: Merge master branch into main branch | |
| run: | | |
| git checkout -b main origin/main | |
| git merge master --no-commit | |
| - name: Push update to main branch | |
| run: | | |
| git push origin main > /dev/null 2>&1 |