Files
release-action/node_modules/@actions/core/lib/command.d.ts
Nick Cipollo 6c34249ffc
Some checks failed
PR Checks / check_pr (push) Has been cancelled
Prepare 1.6.1 release
2020-03-05 13:25:53 -05:00

17 lines
470 B
TypeScript

interface CommandProperties {
[key: string]: string;
}
/**
* Commands
*
* Command Format:
* ##[name key=value;key=value]message
*
* Examples:
* ##[warning]This is the user warning message
* ##[set-secret name=mypassword]definatelyNotAPassword!
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
export declare function issue(name: string, message: string): void;
export {};