app.softwork.kotlin.actions.ActionYml.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of action-json Show documentation
Show all versions of action-json Show documentation
Write GitHub Actions in Kotlin
package app.softwork.kotlin.actions
import kotlinx.serialization.Serializable
@Serializable
public data class ActionYml(
val name: String,
val author: String? = null,
val description: String,
val inputs: Map = emptyMap(),
val outputs: Map = emptyMap(),
val runs: Runs,
val branding: Branding? = null,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy