Skip to content

[Backport 2.12] Tweak backport branch delete workflow to delete other merged branches #4

[Backport 2.12] Tweak backport branch delete workflow to delete other merged branches

[Backport 2.12] Tweak backport branch delete workflow to delete other merged branches #4

name: Delete merged branch of the PRs
on:
pull_request:
types:
- closed
jobs:
delete-branch:
runs-on: ubuntu-latest
if: |
startsWith(github.event.pull_request.head.repo.full_name, 'opensearch-project/documentation-website') &&
startsWith(! github.event.pull_request.head.ref, 'main') &&
startsWith(! github.event.pull_request.head.ref, '1.') &&
startsWith(! github.event.pull_request.head.ref, '2.') &&
startsWith(! github.event.pull_request.head.ref, 'version/')
steps:
- name: Echo remove branch
run: echo Removing ${{github.event.pull_request.head.ref}}
- name: Delete merged branch
uses: SvanBoxel/delete-merged-branch@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}