github-workflows-kt
github-workflows-kt copied to clipboard
Authoring GitHub Actions workflows in Kotlin. You won't go back to YAML!
**What feature do you need?** https://docs.github.com/en/enterprise-cloud@latest/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#inputs-context The access could be even type-unsafe for now (just strings). **Do you have an example usage?** ```kotlin run { println(inputs["myInput"]) } ``` **Is there...
Fixes #1194
Before these changes, `ActionCoords#name` sometimes had the actual action coordinates, so for example `some-name__some-sub`, sometimes it had the replaced `some-name/some-sub`. This is not good, as you never know what you...
Kotlin 2.0.20 compiler started producing warnings if the primary constructor of a data class is private: https://kotlinlang.org/docs/whatsnew2020.html#data-class-copy-function-to-have-the-same-visibility-as-constructor As a short-term approach, we just suppress the warning, and the customers get...
# Component * [ ] github-workflows-kt (library with the DSL) * [x] bindings server (https://bindings.krzeminski.it) * [ ] I don't know # Action ```bash for i in {01..100}; do echo...
# Component * [x] github-workflows-kt (library with the DSL) * [ ] bindings server (https://bindings.krzeminski.it) * [ ] I don't know # Action ```kotlin val FOO by Contexts.env ``` and...
Perhaps https://github.com/hub4j/github-api. The main motivation is that right now we don't handle errors correctly, i.e. we often assume that the calls succeed. - [x] Add Library -- https://github.com/typesafegithub/github-workflows-kt/pull/1889 - [x]...