Skip to content

⚙️ A GitHub Action to delete multiple branches

License

Notifications You must be signed in to change notification settings

homebridge/action-delete-branch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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: homebridge/action-delete-branch@v3
  with:
    github_token: ${{github.token}}
    numbers: 13,22,${{github.event.pull_request.number}}
- name: Delete pr-* branches
  uses: homebridge/action-delete-branch@v3
  with:
    github_token: ${{github.token}}
    branches: 13,22,33
    prefix: pr-
- name: Delete branch
  uses: homebridge/action-delete-branch@v3
  with:
    github_token: ${{github.token}}
    branches: test
    suffix: -done
 - name: Delete branch in specific repository with a specific owner
   uses: homebridge/action-delete-branch@v3
   with:
    github_token: ${{github.token}}
    owner: specific-owner
    repository: specific-repository
    branches: test
    suffix: -done

About

⚙️ A GitHub Action to delete multiple branches

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%