英文:
Automatically create a pull request on github with "auto-merge (rebase)" validated?
问题
我正在从我的终端创建拉取请求,并自动请求审阅人员。我必须手动点击 链接,并在每次验证时进行操作。是否有默认命令可以检查这一点?
英文:
I'm creating pull requests from my terminal, asking reviewers automatically. I have to manually click on
and validate everytime.
Is there a command to check this by default ?
答案1
得分: 2
你可以使用GitHub CLI gh
来进行以下操作:
- 使用
gh pr create
命令创建带有审阅者的PR - 使用
gh pr merge --auto --rebase
命令,仅在满足必要条件后自动进行rebase。
这不会改变默认设置,但可以成为一个脚本的一部分,该脚本将始终使用auto-merge(rebase)
。
英文:
You can use GitHub CLI gh
with:
gh pr create
to create the PR with reviewergh pr merge --auto --rebase
to automatically rebase only after necessary requirements are met.
That does not change the default, but can be part of a script which would always use auto-merge (rebase)
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论