Show / Hide Table of Contents

Class MergeChecks

Criteria which must be satisfied to merge a pull request.

Inheritance
object
MergeChecks
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class MergeChecks

Properties

LastBuildSucceeded

Declaration
[Required(ErrorMessage = "LastBuildSucceeded is required.")]
[JsonProperty(PropertyName = "lastBuildSucceeded")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MergeCheckSettingsValue? LastBuildSucceeded { get; set; }
Property Value
Type Description
MergeCheckSettingsValue?

Indicates whether or not a pull request must have a successful build run and no queued builds before it can be merged

Remarks

Required

In this article
Back to top