Delete multiple branches by ThongTD
ActionsAn 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.
Do not specify
numbersandbranchestogether whenprefixorsuffixare 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: -doneDelete multiple branches by ThongTD 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.