Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force Travis to build a specific pull request or commit SHA that it missed

Is there a way to tell travis to build a specific SHA or the HEAD of a pull request that it might have previously missed (ie if the webhook failed to fire or get picked up by travis)?

I could push a new commit to that pull request, but a method that doesn't involve changing the branch would be better, either via the travis UI, or travis' or github's APIs.

like image 748
jbowes Avatar asked Oct 25 '13 11:10

jbowes


1 Answers

What I've found works is to close the PR in GitHub, then immediately re-open it. That should re-trigger the hook.

like image 158
Kevin Lamping Avatar answered Oct 01 '22 20:10

Kevin Lamping