On Tuesday, 16 December 2014 10:15:31 UTC, Jo Shields wrote: > > Hi, > > We're looking to use Jenkins w/ workflow to replace our in-house CI > system. However, there's a bunch of stuff that doesn't seem to be > present in the addin (some of it might be missing features, some might > be plugin compatibility, some might be me not seeing something in the > documentation) > > 1) How can I change the title of a step in the "Running Steps" page? > "Shell Script" three dozen times is not useful. I'd like to be able to > change this header. > > I've been looking at implementing this, though I find myself a bit confused by the code (though I am VERY rusty when it comes to Java - they didn't change anything in the language syntax since 2001, right?)
The name of the step comes from DescriptorImpl.getDisplayName() - but this method is static, so I can't just have a per-instance name property (with default as it is now). However, the "stage" step is re-nameable. Yet I don't see how this is done, in StageStep.java - what am I missing? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/ec96bfb8-d795-4419-a08b-681d16da0a05%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
