将所有Github Pull Request Builder参数传递给下游作业

时间:2019-08-07 14:28:01

标签: jenkins jenkins-pipeline jenkins-groovy

我有一个“多作业声明式詹金斯管道作业”,当通过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

0 个答案:

没有答案