Compare commits
6 Commits
master
...
develop/re
Author | SHA1 | Date |
---|---|---|
giles | 8a4d8b6bc8 | |
gilesb | a051369401 | |
gilesb | 7ea2a34e80 | |
gilesb | 593f334b3f | |
gilesb | a930ee8a60 | |
gilesb | 6c47b2db75 |
|
@ -43,7 +43,7 @@ jobs:
|
|||
- name: push
|
||||
run: |
|
||||
if [[ $(git branch -r | grep -Fx " origin/${{ env.DEVELOPMENT_BRANCH }}" | wc -c) -eq 0 ]]; then
|
||||
git rebase origin/master --strategy-option theirs
|
||||
git rebase origin/master --strategy-option ours
|
||||
git log -5
|
||||
echo no development branch so pushing
|
||||
git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }};
|
||||
|
@ -59,7 +59,7 @@ jobs:
|
|||
echo 'pushed new branch and created pr';
|
||||
else
|
||||
if [[ $(git diff origin/${{ env.DEVELOPMENT_BRANCH }} | wc -c) -ne 0 ]]; then
|
||||
git rebase origin/${{ env.DEVELOPMENT_BRANCH }} --strategy-option theirs
|
||||
git rebase origin/${{ env.DEVELOPMENT_BRANCH }} --strategy-option ours
|
||||
git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }};
|
||||
else
|
||||
echo 'no changes so no push'
|
||||
|
|
Loading…
Reference in New Issue