这似乎是一个非常有用的工具,可以帮助人们为开源库做出贡献。我会在空中接听答案。
答案 0 :(得分:1)
是肯定的。使用github-api包: https://www.npmjs.org/package/github-api
(来自他们的文档)
创建拉取请求。
var pull = {
title: message,
body: "This pull request has been automatically generated by Prose.io.",
base: "gh-pages",
head: "michael" + ":" + "prose-patch",
};
repo.createPullRequest(pull, function(err, pullRequest) {});