Jenkins Blue Ocean edit editing, post and changes

I have a Jenkins pipeline that does not use git. I LOVE using Blue Ocean as an interface for developers and QA members, but since I do not use git, the interface is limited. If I could edit sections commitand message, it would take me a long way. Is there any way to do this? or being able to change the mileage number to text will also be useful. enter image description here

It would also be very helpful to be able to edit changes within each assembly.

enter image description here

+6
source share
1 answer

you can use this to set description and displayName:

currentBuild.displayName = "The name."
currentBuild.description = "The best description."

pipleine, script - jenkins script

0

Source: https://habr.com/ru/post/1016777/


All Articles