You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* change to merge from bash scritp
* lets use main
Signed-off-by: Rob Sewell <mrrobsewell@outlook.com>
---------
Signed-off-by: Rob Sewell <mrrobsewell@outlook.com>
Co-authored-by: Rob Sewell <mrrobsewell@outlook.com>
# This step merges the main branch into the develop branch after a successful deployment. This ensures that the develop branch includes the tag for the latest release.
91
-
uses: devmasx/merge-branch@1.4.0
92
-
with:
93
-
type: now
94
-
from_branch: main
95
-
target_branch: develop
96
-
github_token: ${{ secrets.REPO_TOKEN }}
95
+
# This step merges the main branch into the develop branch after a successful deployment. This ensures that the develop branch includes the tag for the latest release.
96
+
run: |
97
+
git fetch --unshallow
98
+
git checkout develop
99
+
git pull
100
+
git merge --no-ff main -m "Auto-merge main back to dev"
0 commit comments