BranchProtectionV3RequiredStatusChecks

data class BranchProtectionV3RequiredStatusChecks(val checks: List<String>? = null, val contexts: List<String>? = null, val includeAdmins: Boolean? = null, val strict: Boolean? = null)

Constructors

Link copied to clipboard
constructor(checks: List<String>? = null, contexts: List<String>? = null, includeAdmins: Boolean? = null, strict: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val checks: List<String>? = null

The list of status checks to require in order to merge into this branch. No status checks are required by default. Checks should be strings containing the context and app_id like so "context:app_id".

Link copied to clipboard
val contexts: List<String>? = null

**DEPRECATED** (Optional) The list of status checks to require in order to merge into this branch. No status checks are required by default.

Link copied to clipboard
val includeAdmins: Boolean? = null
Link copied to clipboard
val strict: Boolean? = null

Require branches to be up to date before merging. Defaults to false.