1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

update dependencies

This commit is contained in:
shimataro 2020-01-25 09:25:21 +09:00
parent 041a5e7673
commit 80633001cd
No known key found for this signature in database
GPG key ID: BE92C05736911A9D
8 changed files with 79 additions and 68 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;