0

I got a task to run jenkins job for every commit in stash. And in email body I need to mentioned the user name who last pushed code in to stash.

Is there any Jenkins Variable to get user name who did last commit in stash

SQB
  • 3,926
  • 2
  • 28
  • 49

1 Answers1

0

You should look at Email-ext plugin. It provides a ton a features and control over the email, including what you are asking.

In particular, to display just the name of the user who committed a change, use: ${CHANGES, format="%a"}

Slav
  • 27,057
  • 11
  • 80
  • 104