Skip to content

Commit c739ed9

Browse files
authored
Merge pull request #74 from theotime2005/73-bugfix-use-the-correct-name-to-merge-main-into-production
[BUGFIX] Correct the command to merge main into production
2 parents 51f085c + edcf5b8 commit c739ed9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/Merge into production.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Merge main into production
2727
run: |
2828
git checkout production
29-
git merge main --no-ff -m "Merge branch 'main' into 'production'"
29+
git merge origin/main --no-ff -m "Merge branch 'main' into 'production'"
3030
3131
- name: Push changes
3232
run: |

0 commit comments

Comments
 (0)