When using the workflow_dispatch trigger, which input type allows the user to choose from a predefined list of values?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Just like a dropdown on a web form, 'choice' lets you define a fixed list of options for the person triggering the workflow.
Full explanation below image
Full Explanation
The workflow_dispatch trigger supports four input types: string (free text), boolean (checkbox), number (numeric input), and choice (dropdown with predefined options). The 'choice' type requires an 'options:' list. 'select' is not a valid GitHub Actions input type. This is commonly used for deployment targets like 'dev', 'staging', 'production'.