komikku/.github/workflows/delete_merged_branch.yml
renovate[bot] c38e31a3bb
chore(deps): update actions/checkout digest to eef6144 (#416)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-23 13:08:41 +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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 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 }}