multiple builds for a PR
I have a PR and it seems it is building twice. The first time was for creation, then someone approved it and it built again. Is there a way to turn that down? I'm guessing that one of the builds is for the branch and the other is for the PR, really I only need the PR built I think. Building both is way to long and slow.
Is there anyway to say build the PR only?
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Feodor Fitsner on 02 Oct, 2019 07:48 PM
Hi Steven,
Add
skip_branch_with_pr: true
to yourappveyor.yml
which means "Do not build feature branch with open Pull Requests".2 Posted by steven.roberts on 02 Oct, 2019 09:36 PM
great thank you!