update modules after merge

This commit is contained in:
Slawomir Jaranowski
2020-01-24 10:22:39 +01:00
parent 2fcbb003a0
commit fa46b1d3e0
13 changed files with 327 additions and 100 deletions

View File

@ -5,11 +5,11 @@ interface CommandProperties {
* Commands
*
* Command Format:
* ##[name key=value;key=value]message
* ::name key=value,key=value::message
*
* Examples:
* ##[warning]This is the user warning message
* ##[set-secret name=mypassword]definitelyNotAPassword!
* ::warning::This is the message
* ::set-env name=MY_VAR::some value
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
export declare function issue(name: string, message?: string): void;