komikku/.github/workflows/delete_merged_branch.yml
renovate[bot] 06a46e382c
Update actions/checkout action to v4.2.2 (#451)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-28 22:11:48 +07:00

25 lines
834 B
YAML

name: Delete Merged Branch
on:
pull_request:
types: [closed]
jobs:
delete_merged_branch:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && github.repository == github.event.pull_request.head.repo.full_name
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Delete branch
run: |
branch_name=$(echo "${{ github.event.pull_request.head.ref }}")
if [ "$branch" != "refs/heads/main" ] && [ "$branch" != "refs/heads/master" ]; then
echo "Deleting branch ${branch_name}"
git push origin --delete $branch_name
else
echo "Skipping deletion of main or master branch"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}