format/another -> develop/another
build-develop-branch / build-branch (push) Successful in 30s
Details
build-develop-branch / build-branch (push) Successful in 30s
Details
This commit is contained in:
parent
bb0c9c7a89
commit
2ae432085d
|
@ -28,7 +28,7 @@ jobs:
|
||||||
firstString=${{ github.ref_name }}
|
firstString=${{ github.ref_name }}
|
||||||
secondString="develop"
|
secondString="develop"
|
||||||
echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/build\//"$secondString"\/}
|
echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/build\//"$secondString"\/}
|
||||||
- name: GIT commit diff
|
- name: commit
|
||||||
env:
|
env:
|
||||||
CI_COMMIT_MESSAGE: converted to yml for review.
|
CI_COMMIT_MESSAGE: converted to yml for review.
|
||||||
CI_COMMIT_AUTHOR: Continuous Integration
|
CI_COMMIT_AUTHOR: Continuous Integration
|
||||||
|
@ -37,4 +37,24 @@ jobs:
|
||||||
git config --global user.email "username@users.noreply.github.com"
|
git config --global user.email "username@users.noreply.github.com"
|
||||||
git add -A
|
git add -A
|
||||||
git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }}"
|
git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }}"
|
||||||
ggit diff HEAD origin/${{ env.DEVELOPMENT_BRANCH }}
|
- name: status
|
||||||
|
env:
|
||||||
|
CI_COMMIT_MESSAGE: converted to yml for review.
|
||||||
|
CI_COMMIT_AUTHOR: Continuous Integration
|
||||||
|
run: |
|
||||||
|
git status
|
||||||
|
- 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 }} | wc -c) -ne 0 ]]; then
|
||||||
|
git push origin HEAD:origin/${{ env.DEVELOPMENT_BRANCH }};
|
||||||
|
else
|
||||||
|
echo 'no changes so no push'
|
||||||
|
fi
|
|
@ -135,7 +135,7 @@
|
||||||
- Required: '0'
|
- Required: '0'
|
||||||
- ApproveSignatureTemplateName: null
|
- ApproveSignatureTemplateName: null
|
||||||
- RevertSignatureTemplateName: null
|
- RevertSignatureTemplateName: null
|
||||||
- Description: Confirmation by the author of the recipe thatcdcscsvdsvdsvsdit is ready for redcdview.s...gfhhh....
|
- Description: Confirmation by the author of the recipe thatcdcscsvdsvdsvsdit is ready for v vredcdview.s...gfhhh....
|
||||||
- RecipeApprovalStep:
|
- RecipeApprovalStep:
|
||||||
- Name: Review Recipe
|
- Name: Review Recipe
|
||||||
- Id: '-3'
|
- Id: '-3'
|
||||||
|
|
Loading…
Reference in New Issue