fix: mergable PR approvals #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 3 | |
mergeable: | |
- when: 'pull_request.*, pull_request_review.*' | |
name: Approvals check | |
filter: | |
# ignore 'Feedback' PR | |
- do: payload | |
pull_request: | |
title: | |
must_exclude: | |
regex: ^Feedback$ | |
regex_flag: none | |
validate: | |
- do: description | |
no_empty: | |
enabled: true | |
message: 'Description should not be empty! Please provide a description for this pull request.' | |
- do: approvals | |
min: | |
count: 1 | |
block: | |
changes_requested: true | |
limit: | |
users: | |
- VersusXX | |
- AlexandrKudrya | |
- 7gambit7 |