Skip to content

Update pom.xml

Update pom.xml #13

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