Group steps together, visually, without parallelism?

i’d like to see the ability to define a group of steps, without having to use parallelism. something like this:

- group: ":docker: Verify"
  depends_on: 'docker_image_build'
  - name: ":docker: production"
    command: ...
  - name: ":docker: demo"
    command: ...
  - name: ":docker: staging"
    command: ...

and that would produce a single “step” on the main view of the build, with a pop out that contains the three steps i added underneath that group

        |---------------------|
        | [icon] Verify (0/3) |
        |---------------------|
                  /\
|--------------------------------------|
| [1st step] | [2nd step] | [3rd step] |
|--------------------------------------|

Hey @mxriverlynn, thanks for the suggestion and welcome!

This would be amazing if we could get visual feedback to indicate the depends_on key next to the label as a start.

The grouping idea would be ideal👌with the way we’re using this as well.

2 Likes