Unverified Commit 5b877189 authored by Karishma Chadha's avatar Karishma Chadha Committed by GitHub

Update Release Workflow

Add --no-ff flag to `git merge` line in the release branch creation workflow. This should ensure that we're always creating a merge commit on the release branch when pulling in changes from develop to stage for the release.
parent 8e469e6d
...@@ -29,7 +29,7 @@ jobs: ...@@ -29,7 +29,7 @@ jobs:
git config --global user.email "${{ github.actor }}@users.noreply.github.com" git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git config --global user.name "${{ github.actor }}" git config --global user.name "${{ github.actor }}"
git checkout -b ${{ steps.vars.outputs.branch }} git checkout -b ${{ steps.vars.outputs.branch }}
git merge origin/develop git merge --no-ff origin/develop
git push --set-upstream origin ${{ steps.vars.outputs.branch }} git push --set-upstream origin ${{ steps.vars.outputs.branch }}
- name: Develop PR - name: Develop PR
uses: repo-sync/pull-request@v2 uses: repo-sync/pull-request@v2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment