-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't run CI twice on PRs #195
Comments
Do as works for the project, but, for the record, I'm not fond of not having a CI on non-PR branches. (this was a lot of negations sorry) |
There is a ticket on |
If my boolean logic is still intact 😁 I agree with you (all branches should be CI-built). Maybe it should be only |
In my project, I activate the CI on push and PR. And it's built twice on internal PRs. Which is rather unfortunate, but I think is the most helpful to me. |
We do the same for Checker at the moment. To work around this we try to limit the longevity of open PRs so that we aren't triggering the double workflow runs as often (e.g. by only opening draft PRs when a feature is really going to take more than a day or so to implement or pushing batches of commits so that CI only runs on the most recent one). This approach is still a bit wasteful in terms of CI resources though. I'm kind of thinking that it would be okay to leave this as-is for |
Current CI runs twice on PRs, e.g. for #194
I think what we want is:* Pull request* Push formaster
onlyThe text was updated successfully, but these errors were encountered: