Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketRequiredBuildCondition

    A required-builds merge check condition: pull requests targeting refs matched by refMatcher cannot merge until the listed build keys succeed.

    interface BitbucketRequiredBuildCondition {
        buildParentKeys: string[];
        exemptRefMatcher?: RefMatcher;
        id: number;
        refMatcher: RefMatcher;
        requiredForMergeQueue?: boolean;
        requiredForPullRequest?: boolean;
    }
    Index

    Properties

    buildParentKeys: string[]

    Build parent keys that must be green for the merge check to pass

    exemptRefMatcher?: RefMatcher

    Source refs exempt from the condition

    id: number
    refMatcher: RefMatcher

    Refs the condition applies to

    requiredForMergeQueue?: boolean

    Whether the condition is enforced for merges via the merge queue (default true)

    requiredForPullRequest?: boolean

    Whether the condition is enforced for pull requests (default true)