Is it possible to merge pull request automaticaly to master branch on github after success of travis test webhook?
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 ...