You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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
Hi Ulrich,
That literally sounds good! I just saw your reply.
I have send you an email. Thanks in advance.
Regards, Bert
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.