11

I have a Jenkins pipeline that doesn't use git. I would LOVE to use Blue ocean as an interface for the developers and QA members but since I'm not using git the interface is limited. If I could edit the commit and message section it would take me a long long way. Is there a way to do this? or be able to change the run number to text would also be helpful. enter image description here

It would also be super helpful to be able to edit the changes within each build

enter image description here

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Eddie
  • 1,081
  • 2
  • 12
  • 28

1 Answers1

-2

you can use this, to set the description and displayName:

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

In order to use in a declarative pipleine, you need to wrap in a script - jenkins script

oba
  • 2,579
  • 1
  • 21
  • 15