So I have several workflows that share a subset of input parameters, and then have a set of unique parameters. There’s also a subset of the workflows that share another set of parameters.
For example, If I have param1, param2, …, param5, and workflow1 2 and 3 share param1 and param2, and workflow1 and 2 share param5.
I’m trying to figure out the best way to manage this without too much duplication. Is there any way to share parameters, and potentially defaults, between deployments? Either using parameters or the “parameter_open_api_schema”, or something else. Or would I just have to list out all parameters for each deployment?