Update pom.xml #13
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 from main to develop | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| sync_main_into_develop: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout develop branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: develop | |
| fetch-depth: 0 | |
| - name: Configure Git | |
| run: | | |
| git config --global user.name "github-actions" | |
| git config --global user.email "github-actions@github.com" | |
| - name: Merge main into develop | |
| run: | | |
| git fetch origin main | |
| git merge origin/main --no-edit | |
| - name: Push changes to develop | |
| run: | | |
| git push origin develop |