2023-10-22 02:56:47 +00:00
|
|
|
name: build-develop-branch
|
|
|
|
run-name: ${{ github.actor }} is learning GitHub Actions
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types:
|
|
|
|
- closed
|
2023-10-23 13:11:04 +00:00
|
|
|
- deleted
|
2023-10-22 20:37:04 +00:00
|
|
|
branches:
|
|
|
|
- 'master'
|
2023-10-22 02:56:47 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-10-22 20:37:04 +00:00
|
|
|
delete:
|
2023-10-22 02:56:47 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-22 16:09:56 +00:00
|
|
|
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
|
2023-10-22 18:55:31 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.BOT_TOKEN }}
|
2023-10-22 16:09:56 +00:00
|
|
|
- name: delete develop branch
|
2023-10-22 16:21:31 +00:00
|
|
|
id: delete_develop_branch
|
2023-10-22 16:09:56 +00:00
|
|
|
run: git push origin --delete ${{ github.head_ref }}
|
2023-10-22 16:21:31 +00:00
|
|
|
continue-on-error: true
|
|
|
|
- uses: mainmatter/continue-on-error-comment@v1
|
|
|
|
with:
|
2023-10-22 20:37:04 +00:00
|
|
|
repo-token: ${{ secrets.BOT_TOKEN }}
|
2023-10-22 16:21:31 +00:00
|
|
|
outcome: ${{ steps.delete_develop_branch.outcome }}
|
|
|
|
test-id: Error code ${{ matrix.code }}
|
2023-10-22 16:09:56 +00:00
|
|
|
- name: get build branch name
|
|
|
|
run: |
|
|
|
|
firstString=${{ github.head_ref }}
|
2023-10-23 01:26:40 +00:00
|
|
|
secondString="build"
|
|
|
|
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}s
|
2023-10-22 20:37:04 +00:00
|
|
|
if_merged:
|
|
|
|
if: github.event.pull_request.merged == true
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.BOT_TOKEN }}
|
2023-10-23 17:17:48 +00:00
|
|
|
- name: tag
|
2023-10-23 18:31:54 +00:00
|
|
|
run: |
|
2023-10-23 18:34:23 +00:00
|
|
|
git tag
|
2023-10-22 20:37:04 +00:00
|
|
|
- name: delete develop branch
|
|
|
|
id: delete_develop_branch
|
|
|
|
run: git push origin --delete ${{ github.head_ref }}
|
2023-10-22 16:21:31 +00:00
|
|
|
continue-on-error: true
|
|
|
|
- uses: mainmatter/continue-on-error-comment@v1
|
|
|
|
with:
|
2023-10-22 20:37:04 +00:00
|
|
|
repo-token: ${{ secrets.BOT_TOKEN }}
|
|
|
|
outcome: ${{ steps.delete_develop_branch.outcome }}
|
2023-10-22 16:21:31 +00:00
|
|
|
test-id: Error code ${{ matrix.code }}
|