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] |
|--------------------------------------|