Replies: 2 comments
-
E.x. my last push took 23 unnecessary CI minutes |
Beta Was this translation helpful? Give feedback.
0 replies
-
@lostystyg @tawmaz add types condition d9c1d0f - work. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@tawmaz @andyoknen i think we should update actions to do not launch actions for draft pull requests, because they are not really going to be merged but are updated regular and are wasting CI minutes. I did some research and it seems there is and option
if: github.event.pull_request.draft == false
that can be set up for every job and avoid build for draft PRs.Or even more it will be even useful to run actions only for PRs that are already going to be merged by using something like:
that will also do not allow to run actions on Draft PRs
Beta Was this translation helpful? Give feedback.
All reactions