Ras
Ras

Reputation: 547

Identifying the persons who delivered changesets to RTC, in Jenkins

Thanks for looking into my concern.

We are implementing CI with Rational Team Concert(RTC) and Jenkins. As part of this, I want to send the build notifications only to the persons delivered changesets to RTC.

Could you please help me with approaches to filter the person names who delivered changesets.

Regards, R Dama

Upvotes: 2

Views: 325

Answers (1)

Gerold Broser
Gerold Broser

Reputation: 14762

See Post-Build actions

E-mail Notification → ☑ Send separate e-mails to individuals who broke the build → ... Jenkins Mailer Plugin:

  • Send separate e-mails to individuals who broke the build: if checked, the notification e-mail will be sent to individuals who have committed changes for the broken build (by assuming that those changes broke the build).

    If e-mail addresses are also specified in the recipient list, then both the individuals as well as the specified addresses get the notification e-mail. If the recipient list is empty, then only the individuals will receive e-mails.

or

Editable Email NotificationTriggersAdd TriggerAlwaysSend ToAddDevelopers → ... Jenkins Mailer Plugin:

Sends email to all the people who caused a change in the change set.

Upvotes: 2

Related Questions