当通过Web挂钩发出请求时,我正在使用Jenkins GitHub请求请求构建器插件来运行我的单元测试。对于构建步骤,我需要知道要合并到其中的分支的名称(例如,如果将其合并到master分支中,则需要开发分支)。在Jenkins execute shell中是否可以访问此方法?谢谢,
您的链接有答案:
该插件提供了一些非常有用的环境变量。 ghprbActualCommit ghprbActualCommitAuthor ghprbActualCommitAuthorEmail ghprbPullDescription ghprbPullId ghprbPullLink ghprbPullTitle ghprbSourceBranch ghprbTargetBranch sha1
该插件提供了一些非常有用的环境变量。
ghprbActualCommit
ghprbActualCommitAuthor
ghprbActualCommitAuthorEmail
ghprbPullDescription
ghprbPullId
ghprbPullLink
ghprbPullTitle
ghprbSourceBranch
ghprbTargetBranch
sha1
您将需要使用它$ghprbSourceBranch来获取在脚本中其他位置处构建的分支的值。
$ghprbSourceBranch