2022-10-27 08:26:28 +00:00
|
|
|
export interface CommandProperties {
|
2020-07-25 10:21:44 +00:00
|
|
|
[key: string]: any;
|
2020-03-26 09:34:31 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Commands
|
|
|
|
*
|
|
|
|
* Command Format:
|
|
|
|
* ::name key=value,key=value::message
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* ::warning::This is the message
|
|
|
|
* ::set-env name=MY_VAR::some value
|
|
|
|
*/
|
2020-07-25 10:21:44 +00:00
|
|
|
export declare function issueCommand(command: string, properties: CommandProperties, message: any): void;
|
2020-03-26 09:34:31 +00:00
|
|
|
export declare function issue(name: string, message?: string): void;
|