Continuous Integration Build Artifacts xml files converted to yml
build-develop-branch / if_merged (pull_request) Successful in 32s Details
build-develop-branch / build-branch (push) Failing after 28s Details
convert-to-yml / develop-branch (push) Has been skipped Details

This commit is contained in:
Continuous Integration 2023-10-22 16:25:01 +00:00
parent 5341428660
commit f98f61fa7d
1 changed files with 15 additions and 1 deletions

View File

@ -42,4 +42,18 @@ jobs:
repo-token: ${{ secrets.TEA_TOKEN }}
outcome: ${{ steps.delete_build_branch.outcome }}
test-id: Error code ${{ matrix.code }}
- name: get build format branch name
run: |
firstString=${{ github.head_ref }}
secondString="format-"
echo ::set-env name=FORMAT_BRANCH::${firstString/develop-/"$secondString"}
- name: delete format branch
id: delete_format_branch
run: git push origin --delete ${{ env.FORMAT_BRANCH }}
continue-on-error: true
- uses: mainmatter/continue-on-error-comment@v1
with:
repo-token: ${{ secrets.TEA_TOKEN }}
outcome: ${{ steps.delete_format_branch.outcome }}
test-id: Error code ${{ matrix.code }}