mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-01-12 22:49:53 +08:00
1.4 KiB
1.4 KiB
title, description, slug, screenshots, authors, repository, host, stars, updated, installations, organizations
| title | description | slug | screenshots | authors | repository | host | stars | updated | installations | organizations | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Minimum reviews | Enforce a minimum number of reviews on Pull Requests | minimum-reviews |
|
|
raulriera/probot-minimum-reviews | https://horn-produce.glitch.me/ | 6 | 2018-07-06 02:19:39 UTC | 8 |
|
Probot: Minimum Reviews
Usage
- Configure the GitHub App
- Create
.github/minimum-reviews.ymlbased on the following template. - It will wait for pull requests to be reviewed before marking them as ready to be merged.
A .github/minimum-reviews.yml file is required to enable the plugin.
# Number of reviews required to mark the pull request as valid
reviewsUntilReady: 2
# Number of changes in the pull request to start enforcing the reviewsUntilReady rule
changesThreshold: 100
# Message to display when the commit status passes
readyMessage: 'No pending reviews'
# Message to display when the commit status fails
notReadyMessage: 'Pending review approvals'
# Status to set the commit to when waiting for reviews
# 'failure, error, and pending' are the suggested options
notReadyState: 'pending'
