I'm familiar with Active choice parameters plugin in Jenkins to build dynamic UI.
Upon selection of one paramter the second paramter is dynamically populated.
I'm new to github actions, but wanted to know if it is possible to achieve something like below.
List Dropdown 1 multi-select having below options
Color
Fruit
If Color is selected Dynamic Dropdown 2 will show:
Green
Blue
Red
If Fruit is selected:
Apple
Orange
If both Color and Fruit are selected:
Green
Blue
Red
Apple
Orange
Kindly suggest.
actions/runnerissue 998 is an example of such a need for dynamic input, but was closed.You have different approaches illustrated here to emulate that feature, but you can also try, using "GitHub Actions: Input types for manual workflows":
The config file:
dynamic_options.json:And your workflow script:
On issue 998, Mike Lohmeier reports: