我正在设置一个Jenkins管道脚本,并使用对GitHub的API调用在测试通过后执行合并和发布。
对于我想要的工作流程,我需要使用Jenkinsfile将我的release-candidate
分支合并到我的beta-release
分支中。此合并应该始终是快速合并,因为这是工作进入beta-release
分支的唯一方法。请勿创建合并提交,这很重要,因为我检查了该分支中最新提交的GitHub状态,以查看测试是否最新。
我尝试了merge API call,但是它总是创建合并提交。
我尝试创建一个PR,然后将其与rebase策略合并,但是这也创建了一个合并提交。
是否可以使用GitHub API执行快速合并?
答案 0 :(得分:1)
您实际上可以进行引用更新,而不是合并。
status=$(curl --write-out %{http_code} -H "Content-Type: application/json" -H "Authorization: token ${GITHUB_TOKEN}" -X PATCH https://api.github.com/repos/:owner/${REPO}/git/refs/heads/${BASE} \
-d '{ "sha": $(curl -H "Content-Type: application/json" -H "Authorization: token ${GITHUB_TOKEN}" -X GET https://api.github.com/repos/:owner/${REPO}/git/refs/heads/${HEAD} | jq .object.sha ), "force": false }')
# In case of non-fast-forward case create a pull request
if (( $status != 200 )); then
curl -H "Content-Type: application/json" -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/:owner/${REPO}/pulls \
-d '{ "title": "Great pull request", "body": "Please check this non-fast-forward merge", "head": "${HEAD}", "base": "${BASE}" }'
fi;
params:
REPO, BASE, HEAD, GITHUB_TOKEN