Skip to content

Update userController.js #3

Update userController.js

Update userController.js #3

name: Merge services-impl to Deployment_Practice
on:
push:
branches:
- services-impl
jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Merge branch
run: |
git config user.name "NightWalker"
git config user.email "[email protected]"
git fetch
git checkout Deployment_Practice
git merge --no-ff origin/services-impl -m "Merge changes from services-impl branch"
git push origin Deployment_Practice