Disable branch hook when PR hook applies
If I have a PR open on a branch that matches the branch filter, it runs the jobs twice...once for the PR hook, and once for the branch hook. How can I disable the branch hook so that only the PR one runs when applicable?
Thanks
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 12 Aug, 2022 08:23 PM
Yes, add
skip_branch_with_pr: true
toappveyor.yml
.2 Posted by austin.arbor on 12 Aug, 2022 08:39 PM
thanks!