【发布时间】:2013-06-21 11:50:38
【问题描述】:
我希望更改 Jenkins 的 email-ext 插件附带的默认果冻脚本。目前它将显示每次构建之间对 SVN 存储库所做的所有更改,但最好显示每个成功构建之间的所有更改。即
Build 1, successful : email sent to team
Commit 1
Build 2, failed : email sent to committer, showing commit 1
Commit 2 to fix commit 1
Build 3, successful : email sent to team, showing commit 1 & commit 2
与当前方法相反,构建 3 通知只会显示提交 2。
模板使用以下内容拉取数据:
<j:set var="changeSet" value="${build.changeSet}" />
但是是否可以更改此设置以返回上一次成功构建?
谢谢
【问题讨论】: