Replies: 2 comments 3 replies
-
I'm also facing the problem, is there any known workaround here? |
Beta Was this translation helpful? Give feedback.
1 reply
-
I have a similar case where I'd like to have a 'golden flow' that calls a set of other actions, but also allow certain steps to be conditionally removed. So normally
but if someone opts out of step B, it would go
not really sure how to do that without being able to dynamically set |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently,
jobs.<job_id>.needs
can only be set as a literal array. I would like to set it dynamically so the job dependencies within the workflow can adapt to different scenarios determined by variables.I have tried the following:
Conditionally add an entry to the array.
Error:
Dynamically set the array for
needs
.Error:
Replace
true
with a value.Error:
Beta Was this translation helpful? Give feedback.
All reactions