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
## git merge --no-ff -m "Merge develop into stable for ${{ needs.update-develop.outputs.release-version }} release" origin/develop || touch .git-conflicts
148
-
## if [ -f .git-conflicts ]
149
-
## then
150
-
## git diff
151
-
## for f in $(git status | grep 'both modified' | awk '{ print $3 }')
152
-
## do
153
-
## git checkout --theirs "$f"
154
-
## pre-commit run -av --files "$f"
155
-
## git add "$f"
156
-
## done
157
-
## git commit -a -m "Merge develop into stable for ${{ needs.update-develop.outputs.release-version }} release(auto resolving conflicts to the develop version)"
158
-
## fi
159
-
160
-
## - name: Tag The ${{ needs.update-develop.outputs.release-version }} Release
161
-
## run: |
162
-
## git tag --no-sign -m "Release ${{ needs.update-develop.outputs.release-version }}" -a ${{ needs.update-develop.outputs.release-version }}
0 commit comments