我尝试从分支获取所有的拉请求,使用
curl ... /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests?direction=OUTGOING&at=refs%2Fheads%2Fmybranch,但我会收到所有打开的拉请求。
我如何才能得到真正从分支机构发出的请求?
发布于 2022-03-28 13:23:18
尝尝这个
curl --location -u username:password --request GET ' http://bitbucketurl/rest/api/1.0/projects/{projectKey}/repos/{repoSlug}/pull-requests?at=refs/heads/branch&direction=outgoing&state=ALL'
https://stackoverflow.com/questions/69797398
复制相似问题