parautenbach / TeamCity-HipChat-Notifier

TeamCity HipChat Notifier for sending build server notifications to HipChat.
Other
59 stars 31 forks source link

Display proper usernames in build messages #6

Closed fekberg closed 10 years ago

fekberg commented 10 years ago

Currently the messages contains information that says "Triggered by Team Foundation Server", it would me much more convenient to know who actually triggered it based on the changeset.

parautenbach commented 10 years ago

Yes, you're right: It would add value. I've used a straight forward API call for now. What I'll do, is to add something like this after the triggered by section in the message: "Contributors: John, Steve, Susan." It will only be present when there are contributors.

The triggered by message is technically correct. I presume you use a commit trigger. The build server does trigger the build, based on the VCS root it is monitoring and hence I make the distinction between triggered by and contributors.

It should be fairly easy to add. I've extracted the code from another plugin I've written.

pawelpabich commented 10 years ago

Awesome. Thanks for that

parautenbach commented 10 years ago

I've implemented it. Here's the release: https://github.com/parautenbach/TeamCity-HipChat-Notifier/releases/tag/0.4.1

pawelpabich commented 10 years ago

Thanks a lot!