-
Notifications
You must be signed in to change notification settings - Fork 431
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
Improve Pre-commit UX #5318
Comments
Hey @nawazkh 👋🏻 - I can take a look at this one. /assign |
Reopening this because pre-push stage is crashing my local. Something is happening, need to investigate. Until this is fixed, if using pre-commit framework, please use /reopen |
@nawazkh: Reopened this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Hi @bryan-cox , since you were already assigned to this issue, reopening this issue must have pinged you. Please feel free to un-assign yourself in case you don't wanna pick this up. :) |
/kind cleanup
What needs cleanup:
Pre-commit UX can be improved.
Describe the solution you'd like
make verify
andmake test
to run eitherstage:manually
or onstage: pre-push
.make verify test
atstage:manual
will not trigger it from running it locally ongit
commands. Instead it will only get triggered onpre-commit run <my-hook> --hook-stage manual
make verify test
atstage:pre-push
will trigger the hook on runninggit push
. This seems more helpful and a good trade off between dev speed and optimal coverage.stage:pre-push
we want to ensure we can skip runningmake test verify
by appending--no-verify
togit push
command.The text was updated successfully, but these errors were encountered: