Skip to content

Security fix for dependabot auto merge #67

Security fix for dependabot auto merge

Security fix for dependabot auto merge #67

name: Remove snapshot branch
on:
pull_request_target:
types:
- closed
jobs:
delete-pr-branch:
runs-on: ubuntu-latest
if: github.event.sender.login != 'dependabot[bot]'
steps:
- name: Checkout project
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Remove snapshot branch
run: git push origin -d snapshots/${{ github.event.number }} || true