import * as actionify from "https://deno.land/x/actionify@0.3.0/src/expressions.ts";
Classes
An expression which is evaluated within the github action context. |
Functions
Causes the step to always execute, and returns true, even when canceled. A job or step will not run when a critical failure prevents the task from running. For example, if getting sources failed. | |
f and | |
Returns true if the workflow was canceled. | |
Concat a list of expressions and strings into usesable output. | |
Returns | |
Returns true if searchString ends with searchValue. This function is not case sensitive. Casts values to a string. | |
f eq | |
Retrieve the desired github event from the provided context. | |
f expr | Wrap content as an expression. |
Returns true when any previous step of a job fails. If you have a chain of dependent jobs, failure() returns true if any ancestor job fails. | |
Replaces values in the string, with the variable replaceValueN. Variables in the string are specified using the {N} syntax, where N is an integer. You must specify at least one replaceValue and string. There is no maximum for the number of variables (replaceValueN) you can use. Escape curly braces using double braces. | |
Wrap the expression in brackets to create a logical grouping. | |
f gt | |
f gte | |
f is | |
f join | The value for |
f lt | |
f lte | |
f not | Negates the truthiness of the provided expression / value. |
f op | Use a logical / boolean operator to compare the |
f or | |
Returns true when searchString starts with searchValue. This function is not case sensitive. Casts values to a string. | |
Returns true when none of the previous steps have failed or been canceled. | |
f wrap | Wrap an expression or context as an interpolation |