Last active
November 22, 2024 08:29
-
-
Save krzema12/aa3c373dfefc63394537e45cf62e46b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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