nerdexam
GitHub

GITHUB-ACTIONS · Question #25

You are a developer working on developing reusable workflows for your organization. What keyword should be included as part of the reusable workflow event triggers?

The correct answer is C. workflow_call. The workflow_call event is used to trigger a reusable workflow from another workflow. This allows you to create workflows that can be reused in multiple places within your organization, enabling better modularity and reducing duplication.

Author and maintain workflows

Question

You are a developer working on developing reusable workflows for your organization. What keyword should be included as part of the reusable workflow event triggers?

Options

  • Acheck_run
  • Bworkflow_run
  • Cworkflow_call
  • Dpull_request

How the community answered

(37 responses)
  • A
    3% (1)
  • B
    3% (1)
  • C
    95% (35)

Explanation

The workflow_call event is used to trigger a reusable workflow from another workflow. This allows you to create workflows that can be reused in multiple places within your organization, enabling better modularity and reducing duplication.

Topics

#reusable workflows#workflow_call#event triggers#workflow authoring

Community Discussion

No community discussion yet for this question.

Full GITHUB-ACTIONS Practice