git – 在Jenkins中,如果分支失败时如何发送电子邮件是主分支?

我想在预发送脚本(来自可编辑电子邮件通知插件)中编写脚本以发送电子邮件(将取消标志设置为true)仅当分支失败时是一个主分支(如在具有名称的主分支中)科).我该怎么做呢? 最佳答案
How to trigger an email based on a specific condition for a successful build in Jenkins

你的git插件包含一个env varible,或者你可以使用分支名称创建一个env变量.然后使用上面的解决方案来删除邮件.

GIT插件为您提供env变量

GIT_BRANCH – Name of the remote repository (defaults to origin), followed by name of the branch currently being used, e.g. “origin/master” or “origin/foo”

点赞