项目作者: dawidd6

项目描述 :
:gear: A GitHub Action to delete multiple branches
高级语言: JavaScript
项目地址: git://github.com/dawidd6/action-delete-branch.git
创建时间: 2019-09-23T07:01:14Z
项目社区:https://github.com/dawidd6/action-delete-branch

开源协议:MIT License

下载


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.

  1. - name: Delete PRs head branches
  2. uses: dawidd6/action-delete-branch@v3
  3. with:
  4. github_token: ${{github.token}}
  5. numbers: 13,22,${{github.event.pull_request.number}}
  6. - name: Delete pr-* branches
  7. uses: dawidd6/action-delete-branch@v3
  8. with:
  9. github_token: ${{github.token}}
  10. branches: 13,22,33
  11. prefix: pr-
  12. - name: Delete branch
  13. uses: dawidd6/action-delete-branch@v3
  14. with:
  15. github_token: ${{github.token}}
  16. branches: test
  17. suffix: -done
  18. - name: Delete branch in specific repository with a specific owner
  19. uses: dawidd6/action-delete-branch@v3
  20. with:
  21. github_token: ${{github.token}}
  22. owner: specific-owner
  23. repository: specific-repository
  24. branches: test
  25. suffix: -done