Compare commits

...

7 Commits

Author SHA1 Message Date
giles a525783377 build/rebase-15 -> develop/rebase-15
build-develop-branch / build-branch (push) Failing after 26s Details
2023-10-23 15:23:21 +00:00
gilesb 3459cac714 ... 2023-10-23 15:23:21 +00:00
gilesb 83a57e5703 ... 2023-10-23 15:23:21 +00:00
gilesb e3f9828e49 ... 2023-10-23 15:23:21 +00:00
gilesb 3c2b2390ef ... 2023-10-23 15:23:21 +00:00
gilesb 96d97f59aa hhh 2023-10-23 15:23:21 +00:00
gilesb 7a91da8fd5 ... 2023-10-23 15:23:21 +00:00
2 changed files with 4 additions and 5 deletions

View File

@ -43,7 +43,7 @@ jobs:
- name: push - name: push
run: | run: |
if [[ $(git branch -r | grep -Fx " origin/${{ env.DEVELOPMENT_BRANCH }}" | wc -c) -eq 0 ]]; then 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 git log -5
echo no development branch so pushing echo no development branch so pushing
git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }}; git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }};
@ -59,7 +59,7 @@ jobs:
echo 'pushed new branch and created pr'; echo 'pushed new branch and created pr';
else else
if [[ $(git diff origin/${{ env.DEVELOPMENT_BRANCH }} | wc -c) -ne 0 ]]; then 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 }}; git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }};
else else
echo 'no changes so no push' echo 'no changes so no push'

View File

@ -34,8 +34,7 @@ jobs:
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/} echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}
- name: status - name: status
run: | run: |
git branch -r ls
echo $(git branch -r | grep -Fx " origin/${{ env.BUILD_BRANCH }}" | wc -c)
- name: push - name: push
run: | run: |
git add -A git add -A
@ -44,7 +43,7 @@ jobs:
git push origin HEAD:${{ env.BUILD_BRANCH }}; git push origin HEAD:${{ env.BUILD_BRANCH }};
else else
if [[ $(git diff origin/${{ env.BUILD_BRANCH }} | wc -c) -ne 0 ]]; then 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 }} git push origin HEAD:${{ env.BUILD_BRANCH }}
else else
echo 'no changes so no push' echo 'no changes so no push'