Compare commits
7 Commits
38d8984f59
...
a525783377
Author | SHA1 | Date |
---|---|---|
giles | a525783377 | |
gilesb | 3459cac714 | |
gilesb | 83a57e5703 | |
gilesb | e3f9828e49 | |
gilesb | 3c2b2390ef | |
gilesb | 96d97f59aa | |
gilesb | 7a91da8fd5 |
|
@ -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'
|
||||
|
|
|
@ -34,8 +34,7 @@ jobs:
|
|||
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}
|
||||
- name: status
|
||||
run: |
|
||||
git branch -r
|
||||
echo $(git branch -r | grep -Fx " origin/${{ env.BUILD_BRANCH }}" | wc -c)
|
||||
ls
|
||||
- name: push
|
||||
run: |
|
||||
git add -A
|
||||
|
@ -44,7 +43,7 @@ jobs:
|
|||
git push origin HEAD:${{ env.BUILD_BRANCH }};
|
||||
else
|
||||
if [[ $(git diff origin/${{ env.BUILD_BRANCH }} | wc -c) -ne 0 ]]; then
|
||||
git rebase origin/${{ env.BUILD_BRANCH }} --strategy-option theirs
|
||||
git rebase origin/${{ env.BUILD_BRANCH }} --strategy-option ours
|
||||
git push origin HEAD:${{ env.BUILD_BRANCH }}
|
||||
else
|
||||
echo 'no changes so no push'
|
||||
|
|
Loading…
Reference in New Issue