Skip to content

chore: add nmprc config action to node build and test #174

chore: add nmprc config action to node build and test

chore: add nmprc config action to node build and test #174

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