grayaii
grayaii

Reputation: 2444

Decorate (change name) of job in Jenkins queue

Is there a way to change the name of a job in the Jenkins queue? The reason I ask is that we have a parameter job called "deploy", and it is called by multiple upstream jobs. Our build queue has like a dozen of these "deploy" jobs, but each one is unique based on its parameters.

We would like to see what something like this in the queue: deploy:foo-project deploy:bar-project ... instead of just: deploy deploy ...

Is this possible?

Upvotes: 2

Views: 793

Answers (1)

gareth_bowles
gareth_bowles

Reputation: 21140

If you hover over an entry in the queue, you'll see the parameters for the particular build.

You could also look at using the Build Name Setter plugin; the build parameters will be available as environment variables that you can use in the build name string, e.g. deploy:${PROJECT_NAME}

Upvotes: 2

Related Questions