net.nemerosa.ontrack.kdsl.spec.extension.av.AutoApprovalMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-kdsl Show documentation
Show all versions of ontrack-kdsl Show documentation
Ontrack module: ontrack-kdsl
package net.nemerosa.ontrack.kdsl.spec.extension.av
/**
* List of ways the auto approval is managed.
*/
enum class AutoApprovalMode(
val displayName: String,
) {
/**
* Managed at client level, by Ontrack.
*/
CLIENT("Managed by Ontrack"),
/**
* Delegated to the SCM, for example by using the auto merge feature in GitHub.
*/
SCM("Managed by SCM");
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy