Hi there,
I would like to have the ability to add a merge check where I can define (select) users and/or groups which should approve pull requests. Additionally the number of approvals should be configurable.
For example;
Regards, Bert
Hi @Bert Oost ,
we've will have a cloud version of Workzone for Bitbucket available as beta in the next couple weeks. Please send me an email (info at izymes dot com) to discuss details and get access to the beta version. Best, Ulrich
Code Owners for Bitbucket Cloud also should cover your scenario.
You can define two groups, like:
```
# Define groups
@@@Developers @"Joe Dev" @"Jill Dev" @"Jordan Dev"
@@@@LeadDevs @"Domi Dev" @"Jun Dev"
# For all source code, add reviewers from the Delelopers and LeadDevs group
* @@Developers @@LeadDevs
# Then check, the approvals. At least 2 from Developres, and 1 from a lead dev.
(Check(@@Developers >= 2) & Check(@@LeadDevs >= 1))
```
More docs here: https://docs.mibexsoftware.com/codeowners/cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.