Search code examples
githubgit-mergepull-request

How to auto merge pull request on github?


Is it possible to merge pull request automaticaly to master branch on github after success of travis test webhook?


Solution

  • You can most probably add an after_success action to your .travis.yml that would merge the PR using GitHub API. I do not know of any ready to use script for this, but there is no reason for it to be hard. Special care needed for authentication ...