Action.Command (action v0.1.3) View Source
https://github.com/actions/toolkit/blob/main/packages/core/src/command.ts
Example
iex> a = %Elixir.Action.Command{command: "name", properties: %{foo: :bar, hello: :world}, message: "ok"}
iex> inspect(a)
"::name $foo=$bar,$hello=$world::ok"
Link to this section Summary
Link to this section Types
Specs
message() :: binary()
Specs
property_key() :: atom()
Specs
Specs
t() :: %Action.Command{ command: binary(), message: message(), properties: %{required(property_key()) => property_value()} }