Skip to content

Merge pull request #130 from milaboratory/merge-2025-10-29 #312

Merge pull request #130 from milaboratory/merge-2025-10-29

Merge pull request #130 from milaboratory/merge-2025-10-29 #312

Workflow file for this run

name: "Automerge 'v4' to 'master'"
on:
push:
branches: [ 'v4' ]
jobs:
merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- shell: bash
env:
TARGET_BRANCH: 'master'
run: |
# Merge ${{ env.GITHUB_REF_NAME }} into ${{ env.TARGET_BRANCH }}
git config user.email "[email protected]"
git config user.name "Mi CI/CD Robot"
git checkout "${TARGET_BRANCH}"
git merge --no-edit "${GITHUB_REF_NAME}"
git push