print-diff
convert-to-yml / develop-branch (push) Successful in 30s
Details
convert-to-yml / develop-branch (push) Successful in 30s
Details
This commit is contained in:
parent
be63a2e037
commit
d3ef63acfd
|
@ -28,7 +28,7 @@ jobs:
|
|||
firstString=${{ github.ref_name }}
|
||||
secondString="develop"
|
||||
echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/build\//"$secondString"\/}
|
||||
- name: GIT diff
|
||||
- name: commit
|
||||
env:
|
||||
CI_COMMIT_MESSAGE: converted to yml for review.
|
||||
CI_COMMIT_AUTHOR: Continuous Integration
|
||||
|
@ -37,6 +37,18 @@ jobs:
|
|||
git config --global user.email "username@users.noreply.github.com"
|
||||
git add -A
|
||||
git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }}"
|
||||
- name: diff
|
||||
env:
|
||||
CI_COMMIT_MESSAGE: converted to yml for review.
|
||||
CI_COMMIT_AUTHOR: Continuous Integration
|
||||
run: git diff HEAD origin/${{ env.DEVELOPMENT_BRANCH }}
|
||||
- name: push
|
||||
env:
|
||||
CI_COMMIT_MESSAGE: converted to yml for review.
|
||||
CI_COMMIT_AUTHOR: Continuous Integration
|
||||
run: |
|
||||
if $(git diff HEAD origin/${{ env.DEVELOPMENT_BRANCH }}); then
|
||||
git push HEAD origin/${{ env.DEVELOPMENT_BRANCH }};
|
||||
else
|
||||
echo 'no diff'
|
||||
fi
|
Loading…
Reference in New Issue