mirror of
https://github.com/gradle/actions.git
synced 2026-06-11 14:10:46 +00:00
a740661292
This PR adds a missing enum value, and makes strings that are actually
delimited lists those lists, so that you for example in the generated
Kotlin bindings can simply do
```kotlin
additionalArguments = listOf(
"--info",
"--stacktrace",
"--show-version"
)
```
instead of needing to do
```kotlin
additionalArguments = listOf(
"--info",
"--stacktrace",
"--show-version"
).joinToString(" ")
```
or writing it all in one line as one string.
This is also how the typings for older versions are in the typing
catalog.
Theoretically, this is a breaking changes as the typings define the API
surface of the action and from the typings bindings are generated. I'll
leave it up to you how you handle it regarding version increase or when
to merge.
21 lines
353 B
YAML
21 lines
353 B
YAML
# Type descriptors based on https://github.com/typesafegithub/github-actions-typing
|
|
inputs:
|
|
min-wrapper-count:
|
|
type: integer
|
|
|
|
allow-snapshots:
|
|
type: boolean
|
|
|
|
allow-checksums:
|
|
type: list
|
|
separator: ','
|
|
list-item:
|
|
type: string
|
|
|
|
outputs:
|
|
failed-wrapper:
|
|
type: list
|
|
separator: '|'
|
|
list-item:
|
|
type: string
|