TfsNotificationRelay is an extensible plugin for Team Foundation Server that sends notifications to Slack, HipChat and IRC.
- Slack
- HipChat
- IRC
- SMTP
- Microsoft Teams
- Notify multiple targets
- Rule-based event filtering
- Regex filtering on collection, project, repository, branch etc.
- Configurable notification format
- Notification links back to event in TFS web
- Extensible to support other targets
- XAML Build completion
- vNext Build completion*
- Build quality change
- Work item update
- Team project creation/deletion
- Release creation*
- Release deployment*
- Git
- Push and force-push
- Pull request*
- Comment on Pull request*
- Comment on Commit*
- Repository created
- Repository renamed/deleted*
- Branch created/deleted
- Tag created/deleted (both lightweight and annotated)
- Ref updated
- TFVC
- Checkin
- Comment on changeset*
*TFS 2015 only
Since the TFS API changes quite frequently, there are multiple editions of TfsNotificationRelay. Make sure you pick the correct one for your system.
- TfsNotificationRelay for TFS 2013 (2013.2+)
- TfsNotificationRelay for TFS 2015 (2015.2+)
- TfsNotificationRelay for TFS 2017
- TfsNotificationRelay for TFS 2017.1
- TfsNotificationRelay for TFS 2017.2
Discontinued support (last builds available in v1.16.0):
- TfsNotificationRelay for TFS 2015 RTM
- TfsNotificationRelay for TFS 2015.1
Download from releases.
See the wiki on how to install and configure TfsNotificationRelay.
Visual Studio 2015 is required since TfsNotificationRelay uses C# 6. All needed TFS dependecies are included, so you should be able to just clone and build.
TfsNotificationRelay can easily be extended to send notifications to other services. Notifier modules referenced in the configuration file will be loaded dynamically at run time, so TfsNotificationRelay doesn't have to be recompiled.
- Start a new class library project.
- Add a reference to DevCore.TfsNotificationRelay.dll.
- Create a class that implements the single method in
INotifier
. Take a look at theSlackNotifier
class for pointers. - Build and drop in your new dll in the Plugins directory on the server.
- Add a new bot element in
DevCore.TfsNotificationRelay.dll.config
with the correct assembly-qualified type name and settings.
Copyright (C) 2014-2017 Kristian Adrup
TfsNotificationRelay is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. See included file COPYING for details.