pontil/core
Gleaming GitHub Actions
pontil | ˈpɒntɪl | (punty | ˈpʌnti |) noun
(in glass-making) an iron rod used to hold or shape soft glass.
pontil/core is a port of core functionality from the GitHub actions/toolkit to Gleam. This targets both JavaScript and the BEAM. This library is primarily intended to be used by a higher-level API surface and its use directly is discouraged.
Functions in pontil/core are marked with {actions} or {portable}
tags. Functions tagged {actions} only work meaningfully in a GitHub
Actions environment (they depend on variables set by GitHub Actions runners
and/or output to files managed by runners). Functions tagged {portable}
may be used in any environment, although output configuration may be
required (see set_output_mode) and they may perform additional work in
a GitHub Actions runner.
Types
Optional properties that can be sent with output annotation commands
(notice, error, and warning). See create a check run for more
information about annotations.
pub type AnnotationProperties {
Title(String)
File(String)
StartLine(Int)
EndLine(Int)
StartColumn(Int)
EndColumn(Int)
}
Constructors
-
Title(String)A title for the annotation.
-
File(String)The path of the file for which the annotation should be created.
-
StartLine(Int)The start line for the annotation.
-
EndLine(Int)The end line for the annotation. Defaults to
StartLinewhenStartLineis provided. -
StartColumn(Int)The start column for the annotation. Cannot be sent when
StartLineandEndLineare different values. -
EndColumn(Int)The end column for the annotation. Cannot be sent when
StartLineandEndLineare different values. Defaults toStartColumnwhenStartColumnis provided.
The exit code for an action.
This type is part of the public API for pontil.
pub type ExitCode {
Failure
Success
Exit(Int)
}
Constructors
-
FailureA code indicating that the action was a failure (1).
-
SuccessA code indicating that the action was successful (0).
-
Exit(Int)An exit code option for more complex values. This should not be used when using
pontilto write GitHub actions, but may be used when using
Options for reading input values in an action.
pub type InputOptions {
InputRequired
PreserveInputSpaces
}
Constructors
-
InputRequiredWhether the input is required. If required and not present, will return an error. Inputs are not required by default.
-
PreserveInputSpacesWhether leading/trailing whitespace will be preserved for the input. Inputs are trimmed by default.
The output mode that determines how {portable} functions format their
output.
pub type OutputMode {
OutputMode(
debug: fn(String) -> Nil,
info: fn(String) -> Nil,
warning: fn(String, List(AnnotationProperties)) -> Nil,
error: fn(String, List(AnnotationProperties)) -> Nil,
notice: fn(String, List(AnnotationProperties)) -> Nil,
group_start: fn(String) -> Nil,
group_end: fn() -> Nil,
)
}
Constructors
-
OutputMode( debug: fn(String) -> Nil, info: fn(String) -> Nil, warning: fn(String, List(AnnotationProperties)) -> Nil, error: fn(String, List(AnnotationProperties)) -> Nil, notice: fn(String, List(AnnotationProperties)) -> Nil, group_start: fn(String) -> Nil, group_end: fn() -> Nil, )
Errors returned by pontil_core functions.
This type is part of the public API for pontil.
pub type PontilCoreError {
FileError(error: simplifile.FileError)
FileNotFound(path: String)
MissingRequiredInput(name: String)
InvalidBooleanInput(name: String)
MissingEnvVar(name: String)
}
Constructors
-
FileError(error: simplifile.FileError)A file system operation failed.
-
FileNotFound(path: String)A file expected at the given path does not exist.
-
MissingRequiredInput(name: String)A required input was not supplied.
-
InvalidBooleanInput(name: String)An input value does not meet the YAML 1.2 “Core Schema” boolean specification.
-
MissingEnvVar(name: String)A required environment variable is missing or empty.
Values
pub fn action_mode() -> OutputMode
The default mode that emits GitHub Actions workflow commands.
{actions}
pub fn add_path(
input_path: String,
) -> Result(Nil, PontilCoreError)
Prepends input_path to the PATH (for this action and future action steps).
{portable}
pub fn describe_error(error: PontilCoreError) -> String
Returns a human-readable description of a pontil/core error.
{portable}
pub fn env_get_nonempty(name: String) -> option.Option(String)
Returns the value of an environment variable if it is set and non-empty.
{portable}
pub fn error_annotation(
msg message: String,
props props: List(AnnotationProperties),
) -> Nil
Adds an error issue with annotation options.
{portable}
pub fn export_variable(
name name: String,
value value: String,
) -> Result(Nil, PontilCoreError)
Sets env variable for this action and future actions in the job.
{portable}
pub fn get_boolean_input(
name: String,
) -> Result(Bool, PontilCoreError)
Gets the input value of the boolean type in the YAML 1.2 “core schema”
specification. Supported boolean values are true, True, TRUE,
false, False, or FALSE.
{actions}
pub fn get_boolean_input_opts(
name name: String,
opts opts: List(InputOptions),
) -> Result(Bool, PontilCoreError)
Gets the input value of the boolean type in the YAML 1.2 “core schema”
specification. Supported boolean values are true, True,
TRUE, false, False, or FALSE.
{actions}
pub fn get_input(name: String) -> String
Gets a GitHub Action input value with default options.
{actions}
pub fn get_input_opts(
name name: String,
opts opts: List(InputOptions),
) -> Result(String, PontilCoreError)
Gets a GitHub Action input value with provided options.
{actions}
pub fn get_multiline_input(name: String) -> List(String)
Gets the values of a multiline input with default options. Each value is also trimmed.
{actions}
pub fn get_multiline_input_opts(
name name: String,
opts opts: List(InputOptions),
) -> Result(List(String), PontilCoreError)
Gets the values of a multiline input with provided options.
{actions}
pub fn get_state(name: String) -> String
Gets the value of state set by this action’s main execution.
{actions}
pub fn group(name name: String, do action: fn() -> a) -> a
Wraps an action function in an output group.
{portable}
pub fn in_actions() -> Bool
Return True if running inside of a GitHub Actions runner.
{portable}
pub fn mask_secrets(text: String) -> String
Replaces all registered secret values in the given text with ***.
{portable}
pub fn notice_annotation(
msg message: String,
props props: List(AnnotationProperties),
) -> Nil
Adds a notice issue with annotation options.
{portable}
pub fn plaintext_mode() -> OutputMode
A plaintext mode that formats output as readable text without workflow command syntax.
{portable}
pub fn save_state(
name name: String,
value value: String,
) -> Result(Nil, PontilCoreError)
Saves state for current action, the state can only be retrieved by this action’s post job execution.
{actions}
pub fn set_command_echo(enabled: Bool) -> Nil
Enable or disable the echoing of commands into stdout for the rest of the step.
{actions}
pub fn set_exit_code(value: ExitCode) -> Nil
Sets the action exit code.
{portable}
pub fn set_failed(message: String) -> Nil
Writes the message as an error and sets the action status to failed.
{portable}
pub fn set_output(
name name: String,
value value: String,
) -> Result(Nil, PontilCoreError)
Sets the value of an output for passing values between steps or jobs.
{actions}
pub fn set_output_mode(mode: OutputMode) -> Nil
Sets the OutputMode for a program using pontil/core.
If not specified, the default is the GitHub Actions output mode. The output mode may be changed at any time. It is recommended that this be selected as early possible.
{portable}
pub fn set_secret(value: String) -> String
Registers a secret which will be masked from logs.
Returns the input value so it can be used as the last expression in a pipeline:
Ok(set_secret("mypassword")) // => Ok("mypassword")
{portable}
pub fn set_secrets(values: List(String)) -> List(String)
Registers multiple secrets which will be masked from logs.
Returns the input values.
{portable}
pub fn to_platform_path(path: String) -> String
Converts the given path to the platform-specific form.
{portable}
pub fn to_posix_path(path: String) -> String
Converts the given path to posix form (\\ → /).
{portable}
pub fn to_win32_path(path: String) -> String
Converts the given path to win32 form (/ → \\).
{portable}
pub fn warning_annotation(
msg message: String,
props props: List(AnnotationProperties),
) -> Nil
Adds a warning issue with annotation options.
{portable}