I'm using the workflow_dispatch option to trigger my workflow and I have a choice input variable. I would like to set the choice variable's options parameter from either an environment variable or a simple variable. Is it possible? The code would look something like:
on:
workflow_dispatch:
inputs:
suites:
type: choice
description: Select test suite
required: true
options: ${{ vars.all_suites }}
Thank you so much!