小编典典

Jenkins GitHub拉取请求生成器-获取执行Shell的分支名称

jenkins

当通过Web挂钩发出请求时,我正在使用Jenkins GitHub请求请求构建器插件来运行我的单元测试。对于构建步骤,我需要知道要合并到其中的分支的名称(例如,如果将其合并到master分支中,则需要开发分支)。在Jenkins
execute shell中是否可以访问此方法?谢谢,


阅读 557

收藏
2020-07-25

共1个答案

小编典典

您的链接有答案:

该插件提供了一些非常有用的环境变量。

  1. ghprbActualCommit

  2. ghprbActualCommitAuthor

  3. ghprbActualCommitAuthorEmail

  4. ghprbPullDescription

  5. ghprbPullId

  6. ghprbPullLink

  7. ghprbPullTitle

  8. ghprbSourceBranch

  9. ghprbTargetBranch

  10. sha1

您将需要使用它$ghprbSourceBranch来获取在脚本中其他位置处构建的分支的值。

2020-07-25