https://github.com/veelenga/gh-pr-review-voodoo
A GitHub bot to improve PR review workflow.
https://github.com/veelenga/gh-pr-review-voodoo
Last synced: about 2 months ago
JSON representation
A GitHub bot to improve PR review workflow.
- Host: GitHub
- URL: https://github.com/veelenga/gh-pr-review-voodoo
- Owner: veelenga
- License: isc
- Created: 2019-09-05T21:24:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-11T14:52:04.000Z (over 2 years ago)
- Last Synced: 2025-02-13T17:15:35.084Z (3 months ago)
- Language: TypeScript
- Homepage: https://github.com/apps/pr-review-voodoo
- Size: 2.08 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# GitHub PR Review Voodoo
[](https://travis-ci.org/veelenga/gh-pr-review-voodoo)
A GitHub bot to improve PR review workflow. It is able to:
- [x] request PR reviews based on selected labels
- [x] assign PR to requester
## Setup
```sh
# Install dependencies
npm install# Run the bot
npm run dev
```## Config
```yml
# .github/pr-review-voodoo.yml# Reviews will be requested from desired people once PR is labeled.
reviewerGroupsByLabels:
front-end: # label name
- reviewer1 # user github login
- reviewer2
- reviewer3back-end:
- reviewer4
- reviewer5fullstack:
- reviewer3
- reviewer4autoAssignToRequestor: true # auto assign opened pull request to requestor (false by default)
minAmountOfReviewers: 2 # a minimum amount of reviewers to be added to PR```
## Deployment
```
$ now deploy
```Refer to [Deploying Probot Apps on Now v2](https://medium.com/twostoryrobot/deploying-probot-apps-on-now-v2-b457650dadde) for more info.
## Testing
```
$ npm run test
```## Contributing
If you have suggestions for how gh-pr-review-voodoo could be improved, or want to report a bug, open an issue! We'd love all and any contributions.
For more, check out the [Contributing Guide](CONTRIBUTING.md).
## License
[ISC](LICENSE) © 2019 Vitalii Elenhaupt