.
convert-to-yml / develop-branch (push) Successful in 26s Details

This commit is contained in:
giles 2023-10-23 00:41:15 +01:00
parent 5ad0a04c0d
commit aa1192ab11
2 changed files with 6 additions and 5 deletions

View File

@ -27,6 +27,7 @@ jobs:
./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }}
echo ::set-env name=PR::$(./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1)
rm ./tea
- run: git fetch
- name: get build branch name
run: |
firstString=${{ github.ref_name }}
@ -39,9 +40,10 @@ jobs:
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "username@users.noreply.github.com"
git checkout -b ${{ env.BUILD_BRANCH }}
git add -A
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} yml files converted to xml"
git checkout -b ${{ env.BUILD_BRANCH }}
get merge --squash ${{ github.ref_name }}
git push origin HEAD:${{ env.BUILD_BRANCH }}
- name: make pull request comment

View File

@ -16,10 +16,7 @@ jobs:
- uses: http://sigyl.com:3000/actions/setup-node@v3
with:
node-version: '20'
- name: fetch
run: |
git fetch origin --depth=10
git pull
- run: git fetch
- name: log
run: git log -10
- uses: http://sigyl.com:3000/actions/batch2yaml@master
@ -40,4 +37,6 @@ jobs:
git config --global user.email "username@users.noreply.github.com"
git add -A
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} xml files converted to yml"
git checkout ${{ env.DEVELOPMENT_BRANCH }}
git merge --squash ${{ github.ref_name }}
git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }}