2017-05-24 67 views

回答

0

您可以使用此代碼,它使用scripted pipeline語法:

properties([pipelineTriggers([githubPush()])]) 

node { 
    git url: 'https://github.com/someone/something.git', branch: 'master' 
} 

this issue看看更多的信息。

相關問題