develop/tags -> build/tags
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
4b5f68937d
commit
98209dcd04
|
@ -9,26 +9,6 @@ on:
|
||||||
- 'master'
|
- 'master'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
delete:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.BOT_TOKEN }}
|
|
||||||
- name: delete develop branch
|
|
||||||
id: delete_develop_branch
|
|
||||||
run: git push origin --delete ${{ github.head_ref }}
|
|
||||||
continue-on-error: true
|
|
||||||
- uses: mainmatter/continue-on-error-comment@v1
|
|
||||||
with:
|
|
||||||
repo-token: ${{ secrets.BOT_TOKEN }}
|
|
||||||
outcome: ${{ steps.delete_develop_branch.outcome }}
|
|
||||||
test-id: Error code ${{ matrix.code }}
|
|
||||||
- name: get build branch name
|
|
||||||
run: |
|
|
||||||
firstString=${{ github.head_ref }}
|
|
||||||
secondString="build"
|
|
||||||
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}s
|
|
||||||
if_merged:
|
if_merged:
|
||||||
if: github.event.pull_request.merged == true
|
if: github.event.pull_request.merged == true
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -55,3 +35,24 @@ jobs:
|
||||||
repo-token: ${{ secrets.BOT_TOKEN }}
|
repo-token: ${{ secrets.BOT_TOKEN }}
|
||||||
outcome: ${{ steps.delete_develop_branch.outcome }}
|
outcome: ${{ steps.delete_develop_branch.outcome }}
|
||||||
test-id: Error code ${{ matrix.code }}
|
test-id: Error code ${{ matrix.code }}
|
||||||
|
delete-develop:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.BOT_TOKEN }}
|
||||||
|
- name: delete develop branch
|
||||||
|
id: delete_develop_branch
|
||||||
|
run: git push origin --delete ${{ github.head_ref }}
|
||||||
|
continue-on-error: true
|
||||||
|
- uses: mainmatter/continue-on-error-comment@v1
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.BOT_TOKEN }}
|
||||||
|
outcome: ${{ steps.delete_develop_branch.outcome }}
|
||||||
|
test-id: Error code ${{ matrix.code }}
|
||||||
|
- name: get build branch name
|
||||||
|
run: |
|
||||||
|
firstString=${{ github.head_ref }}
|
||||||
|
secondString="build"
|
||||||
|
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}s
|
||||||
|
|
Loading…
Reference in New Issue