Skip to content
This repository has been archived by the owner on Apr 30, 2021. It is now read-only.

Latest commit

 

History

History
38 lines (34 loc) · 1.33 KB

README.md

File metadata and controls

38 lines (34 loc) · 1.33 KB

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