Support & Downloads

Izymes builds easy-to-use apps for Atlassian applications that boost your productivity, free you from performing repetitive tasks inside Confluence, Jira and Bitbucket and enable you to use your time for what you do best – YOUR job.

Book a Demo

Interested in a 1-on-1 demonstration of Izymes’s products?
Here we will walk you through;

• All features and benefits of the product you are interested in trying.
• How to set up the account and configure the settings.
• Other tips, tricks and best practices.

It will also give us time to answer any questions you may have, or perhaps you just want to have a chat, we love a good chat.
You can schedule a time on the Calendly link below. Talk soon!

Contact Info
HQ Southport
Queensland, Australia
[email protected]
Follow Us

From simple to advanced control of merge conditions

Workzone’s automated pull request merge control is easy and straightforward to configure by defining some simple merge conditions:

For a simple merge condition all or a subset of the following criteria are AND combined to allow a merge to happen or block it:

  • Reviewers approval quota – how many percent of reviewers must approve
  • Reviewers group quota – how many members of a reviewer group must approve
  • Required digital signatures – how many approvals must have a digital signatures for CFR Part 11 compliance
  • Required successful builds – how many successful build results must be associated with the pull request’s source branch HEAD

Advanced Merge Conditions

Often the required merge condition can’t be expressed in a simple AND combination. Workzone features a powerful boolean expression parser that allows you to configure any boolean merge condition using the above criteria.

Use ‘approvalQuota‘, ‘groupQuota‘, ‘approvalCount‘, ‘mandatorApprovalCount‘, ‘requiredBuildsCount‘, ‘requiredSignaturesCount‘ and ‘< > = ( )‘ to build an expression. For example

"requiredBuildsCount > 1 & ( approvalQuota >= 50% | groupQuota >= 2 ) & requiredSignaturesCount > 2"

The pull request will be automatically merged if: more than 2 digital signature and more than 1 successful build and 50% or more of reviewers have approved

OR

More than 2 digital signature and more more than 1 successful build and 2 or more members per reviewer-group have approved.