nerdexam
GitHub

GITHUB-ACTIONS · Question #31

Which workflow commands send information from the runner? (Choose two.)

The correct answer is B. setting a debug message D. setting output parameters. Setting a debug message using ::debug:: command sends a message to the logs, helping with troubleshooting and providing insight into the workflow run. Setting output parameters using ::set- output sends data from a job step to subsequent steps or jobs, which can be used later in

Use workflow components to automate software development lifecycle

Question

Which workflow commands send information from the runner? (Choose two.)

Options

  • Areading from environment variables
  • Bsetting a debug message
  • Cpopulating variables in a Dockerfile
  • Dsetting output parameters

How the community answered

(49 responses)
  • A
    8% (4)
  • B
    88% (43)
  • C
    4% (2)

Explanation

Setting a debug message using ::debug:: command sends a message to the logs, helping with troubleshooting and providing insight into the workflow run. Setting output parameters using ::set- output sends data from a job step to subsequent steps or jobs, which can be used later in the

Topics

#workflow commands#debug messages#output parameters#runner communication

Community Discussion

No community discussion yet for this question.

Full GITHUB-ACTIONS Practice