batch-example/.gitea/workflows/develop-pr-closed.yml

35 lines
1.1 KiB
YAML
Raw Normal View History

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
branches:
2023-10-23 22:30:10 +00:00
- master
jobs:
2023-10-23 19:41:13 +00:00
delete-develop:
2023-10-23 22:30:10 +00:00
if: ${{ ! startsWith(github.head_ref, '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 }}
2023-10-23 19:41:13 +00:00
- name: get build branch name
run: |
firstString=${{ github.head_ref }}
secondString="build"
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}s
2023-10-23 22:30:10 +00:00
- name: delete build branch
run: git push origin --delete ${{ env.BUILD_BRANCH }}
2023-10-23 19:41:13 +00:00