我有一个“多作业声明式詹金斯管道作业”,当通过Github Pull Request构建器针对特定分支提出PR时,将自动触发该作业。
我想将所有Github Pull Request构建器参数传递给下游作业(Jenkins File)。
pipeline {
agent any
stages {
stage('Childs') {
parallel {
stage('Child Jobs - 1'){
steps {
build(job: 'child-job-1')
}
}
stage('Child Jobs - 2'){
steps {
build(job: 'child-job-2')
}
}
}
}
}
}
我无法访问
的参数ghprbActualCommit ghprbActualCommitAuthor ghprbActualCommitAuthorEmail ghprbPullDescription ghprbPullId ghprbPullLink ghprbPullTitle ghprbSourceBranch ghprbTargetBranch ghprbCommentBody sha1