GitHub
GITHUB-ACTIONS · Question #33
Which action type should be used to bundle a series of run steps into a reusable custom action?
The correct answer is A. Composite action. A composite action allows you to bundle multiple steps into a single reusable action within a workflow. It is composed of multiple run steps or other actions and can be reused across workflows, making it the perfect choice for bundling a series of steps.
Create and publish custom GitHub Actions
Question
Which action type should be used to bundle a series of run steps into a reusable custom action?
Options
- AComposite action
- BBash script action
- CDocker container action
- DJavaScript action
How the community answered
(42 responses)- A86% (36)
- B2% (1)
- C5% (2)
- D7% (3)
Explanation
A composite action allows you to bundle multiple steps into a single reusable action within a workflow. It is composed of multiple run steps or other actions and can be reused across workflows, making it the perfect choice for bundling a series of steps.
Topics
#composite action#reusable action#action types#run steps
Community Discussion
No community discussion yet for this question.