MCPcopy Create free account
hub / github.com/actions/toolkit / issueCommand

Function issueCommand

packages/core/src/command.ts:19–26  ·  view source on GitHub ↗
(
  command: string,
  properties: CommandProperties,
  message: string
)

Source from the content-addressed store, hash-verified

17 * ##[set-secret name=mypassword]definatelyNotAPassword!
18 */
19export function issueCommand(
20 command: string,
21 properties: CommandProperties,
22 message: string
23): void {
24 const cmd = new Command(command, properties, message)
25 process.stdout.write(cmd.toString() + os.EOL)
26}
27
28export function issue(name: string, message: string): void {
29 issueCommand(name, {}, message)

Callers 6

exportVariableFunction · 0.90
exportSecretFunction · 0.90
addPathFunction · 0.90
setOutputFunction · 0.90
debugFunction · 0.90
issueFunction · 0.85

Calls 1

toStringMethod · 0.95

Tested by

no test coverage detected