nerdexam
GitHub

GITHUB-ACTIONS · Question #57

What metadata file in a custom action defines the main entry point?

The correct answer is C. action.yml. The action.yml file is the metadata file in a custom GitHub Action that defines the main entry point, including information such as the inputs, outputs, description, and the runs key that specifies the main entry point (e.g., a script or a Docker container).

GitHub Actions - Custom Actions

Question

What metadata file in a custom action defines the main entry point?

Options

  • Aaction.js
  • Bindex.js
  • Caction.yml
  • Dmain.yml

How the community answered

(31 responses)
  • B
    3% (1)
  • C
    90% (28)
  • D
    6% (2)

Explanation

The action.yml file is the metadata file in a custom GitHub Action that defines the main entry point, including information such as the inputs, outputs, description, and the runs key that specifies the main entry point (e.g., a script or a Docker container).

Topics

#custom actions#action.yml#action metadata#entry point

Community Discussion

No community discussion yet for this question.

Full GITHUB-ACTIONS Practice