Update userController.js #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |