如果 SVN 提交消息中缺少特定条目,则需要发送电子邮件
如果特定条目中缺少我的 SVN 提交消息,我需要发送电子邮件。
我的 SVN 提交消息如下:
Key1 : Value1
Key2 : Value2
Key3 : Value3
Key4 : Value4
Key5 : Value5
如果开发人员在没有 Value1 或 Value2 的情况下检查代码,则开发人员应该收到自动生成的邮件。我使用 Jenkins 作为我们的构建系统,但 Jenkins 不提供此功能。为此,我必须使用一些定制的电子邮件程序。 请提出一种实现要求的方法。
I need to send an email if my SVN commit message is missing from particular entries.
My SVN commit message would be like:
Key1 : Value1
Key2 : Value2
Key3 : Value3
Key4 : Value4
Key5 : Value5
If a developer checks the code without Value1 or Value2, the developer should get and auto-generated mail. I am using Jenkins as our build system but Jenkins doesn't provide this functionality. I would have to use some customized Emailer for this.
Please suggest a way to achieve the requirement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要编写一个钩子。 svn hook 链接 演示了一个。谷歌一下。
You need to write a hook. svn hook link demonstrates one. Google it.