https://github.com/rogerluan/label-remover
Removes all labels from a pull request once it is merged or closed.
https://github.com/rogerluan/label-remover
Last synced: 9 months ago
JSON representation
Removes all labels from a pull request once it is merged or closed.
- Host: GitHub
- URL: https://github.com/rogerluan/label-remover
- Owner: rogerluan
- License: mit
- Created: 2020-08-12T20:45:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-09T22:01:00.000Z (about 3 years ago)
- Last Synced: 2025-01-14T04:31:15.428Z (over 1 year ago)
- Language: TypeScript
- Size: 1.14 MB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Label Remover
This GitHub Action will remove all labels of a PR upon trigger. This is specially useful if you execute this action upon pull request merge/close.
## Preview

## Usage
Add a GitHub action.
```yaml
name: Remove All Labels
on:
pull_request:
types: [closed]
jobs:
remove_labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: rogerluan/label-remover@v1.0.1
with:
github_token: ${{ secrets.github_token }}
```
## License
Copyright 2020 Roger Oba.
_Label Remover_ is released under the [MIT License](./LICENSE).