你能给我一个例子,说明 Jenkinsfile 配置应该如何被 curl http trigger-buildwithparameters 触发?我努力了:
properties([parameters(
[string(defaultValue: 'nothing',
description: 'gitcommit',
name: 'somecommit')])])
但似乎这个管道不会被带有 @somecommit 参数的 buildwithparameters 触发。可以通过传递参数的远程http调用触发bitbucket分支源/多分支管道吗?