使用 Gitlab API 命令合并合并请求
Posted
技术标签:
【中文标题】使用 Gitlab API 命令合并合并请求【英文标题】:Merging a merge request using Gitlab API commands 【发布时间】:2019-04-18 06:50:24 【问题描述】:我正在尝试使用 gitlab api 合并一个合并请求,以下是我正在使用 groovy 执行的操作,但我一直遇到错误,我对此很陌生,因此非常感谢任何帮助!
def MRUrl = "https://gitlab.domain.com/api/v4/projects/project_name/merge_requests/113/merge"
def post = new URL(MRUrl).openConnection();
post.setRequestMethod("PUT")
post.setDoOutput(true)
post.setRequestProperty("Private-Token", "$Key")
post.getOutputStream().write(message.getBytes("UTF-8"));
def responseCode = post.getResponseCode();
Error / exception:
No such property: message for class: gitLab
gitlab API 调用来自以下文档。 https://docs.gitlab.com/ee/api/merge_requests.html#accept-mr
【问题讨论】:
没有message
。最有可能在这里:post.getOutputStream().write(message.getBytes("UTF-8"));
我觉得有点不好意思,但是谢谢!就是这样
【参考方案1】:
cfrick 提供了这个问题的答案
【讨论】:
以上是关于使用 Gitlab API 命令合并合并请求的主要内容,如果未能解决你的问题,请参考以下文章
创建新的合并请求线程时引用的 GitLab line_code 是啥