Skip to content

Delete multiple branches

Actions
Delete multiple branches from repository
v3.1.0
Latest
Star (10)

Delete multiple branches GitHub Action

An action that deletes multiple branches from repository. Optionally one can provide a prefix or suffix strings that would be appended or prepended to every branch name. If it is needed to specify which owner and repository the branches are located in, then the owner and repository can be provided as well. If setting the soft_fail flag to true a warning will be written to the console, and the action will continue, instead of the action failing. The default is false.

Usage

Do not specify numbers and branches together when prefix or suffix are set.

- name: Delete PRs head branches
  uses: dawidd6/action-delete-branch@v3
  with:
    github_token: ${{github.token}}
    numbers: 13,22,${{github.event.pull_request.number}}
- name: Delete pr-* branches
  uses: dawidd6/action-delete-branch@v3
  with:
    github_token: ${{github.token}}
    branches: 13,22,33
    prefix: pr-
- name: Delete branch
  uses: dawidd6/action-delete-branch@v3
  with:
    github_token: ${{github.token}}
    branches: test
    suffix: -done
 - name: Delete branch in specific repository with a specific owner
   uses: dawidd6/action-delete-branch@v3
   with:
    github_token: ${{github.token}}
    owner: specific-owner
    repository: specific-repository
    branches: test
    suffix: -done

Delete multiple branches is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Delete multiple branches from repository
v3.1.0
Latest

Delete multiple branches is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.