Hi everyone, I am trying to migrate to the new pipelines and stages feature, but I ran into an issue trying to skip specific workflows.
Before, I was using the build-router-start step, allowing me to skip workflows if the env variable was true:
build_integration:
before_run:
- _set_skip_variable
steps:
- build-router-start@0:
run_if: '{{getenv "SKIP_WORKFLOWS" | ne "true"}}'
inputs:
- workflows: |-
workflows1
workflows2
Now with the new stage feature, I donβt see a way to do the same.