Skip to content

chore: release mixcr software for platform from defined branch #184

chore: release mixcr software for platform from defined branch

chore: release mixcr software for platform from defined branch #184

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