We have a CD pipeline which is invoked at the end of a few different CI jobs via a codefresh-run
step.
This works well, except when viewing the log of builds from the CD pipeline, it is difficult to tell what was deployed without opening the build. From within the build, we customise the title
of our deploy step to explain visually what was deployed and where.
To illustrate, here is a screenshot of the CD job, where each build run is deploying something different (potentially to a different environment), all configured via arguments passed in to the build run:
In Jenkins, we’d have used something like this: https://plugins.jenkins.io/build-name-setter/. I’ve tried (just on a hunch, unable to find any supporting docs) setting a title
for the entire pipeline which incorporates some variables that were passed in, but this is unsupported.
Has anyone else come across a solution to this?