command.d.ts 471 B

1234567891011121314151617
  1. interface CommandProperties {
  2. [key: string]: string;
  3. }
  4. /**
  5. * Commands
  6. *
  7. * Command Format:
  8. * ##[name key=value;key=value]message
  9. *
  10. * Examples:
  11. * ##[warning]This is the user warning message
  12. * ##[set-secret name=mypassword]definitelyNotAPassword!
  13. */
  14. export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
  15. export declare function issue(name: string, message?: string): void;
  16. export {};