Hi, I don't think this is currently possible with CCNet (at least, not elegantly).
For what you've asked, I would create an MSBuild target<http://msdn.microsoft.com/en-us/library/ms171462.aspx>that conditionally runs based on the commit message. You would use either the MSBuild Exec task<http://msdn.microsoft.com/en-us/library/x8zx72cd.aspx> or write a custom MSBuild task<http://blogs.msdn.com/b/msbuild/archive/2006/01/21/515834.aspx> to retrieve the commit message, then use MSBuild Community Task's Email task<https://github.com/loresoft/msbuildtasks> to send your email. I don't think there is a task which handles RSS subscriptions, but you could always roll your own. HTH, ~Sam. On Tuesday, 14 August 2012 18:31:36 UTC+2, algida wrote: > > Hi all, > I have this problem. > I need to publish (email, or RSS) only if there are some key words in > commit message (we are using svn). > > Is there any way how to do that? > > Thank you A. >
