Skip to content

Instantly share code, notes, and snippets.

@krzema12
Last active November 22, 2024 08:29
Show Gist options
  • Save krzema12/aa3c373dfefc63394537e45cf62e46b9 to your computer and use it in GitHub Desktop.
Save krzema12/aa3c373dfefc63394537e45cf62e46b9 to your computer and use it in GitHub Desktop.
data class Checkout(
val fetchDepth: FetchDepth,
) : Action(name = "actions/checkout@v2")
sealed interface FetchDepth {
object Infinite : FetchDepth
data class Quantity(val value: Int) : FetchDepth
}
// https://github.com/typesafegithub/github-workflows-kt/blob/4425bea99e8cd35eac5f11232f84df0ca5cd7afb/src/main/kotlin/it/krzeminski/githubactions/actions/Checkout.kt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment