You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can utilize git hooks to improve developer experience. Git hooks are scripts that are run at various event in git such as commit & push. We make use of these hooks to automate certain tasks or add checks. We can add auto format before commit, check to make sure our commit message are following guidelines outlined by common conventions, run errorprone or add a security scan. These are few of the many many ways we can use git hooks to our advantage.
Adding git hooks can maintainers not get overwhelmed with notification or failed pipelines and save on cost by not having to rerun runner with each new commit(eco friendly ♻️).
Motivation
Formatting is annoying, running errorprone as part of pre-push can help us reduce new issues introduced.
Describe the solution
We can use either a tool like precommit or simply add our hooks in .git/hooks/<hook>. How?
Additional context
No response
The text was updated successfully, but these errors were encountered:
It's a good idea, but it comes with a cost. We are looking into using error-prone - see #1746, and in the last week, I've raised a number of issues related to error problem warnings. We also want to donate the project to the ASF Incubator in the near future, and the ASF has some restrictions on what we can and can not run as we would be using a shared resource from all ASF projects, and we need to ensure we don't take more than our fair share of resources.
Describe the feature
We can utilize git hooks to improve developer experience. Git hooks are scripts that are run at various event in git such as
commit
&push
. We make use of these hooks to automate certain tasks or add checks. We can add auto format before commit, check to make sure our commit message are following guidelines outlined by common conventions, run errorprone or add a security scan. These are few of the many many ways we can use git hooks to our advantage.Adding git hooks can maintainers not get overwhelmed with notification or failed pipelines and save on cost by not having to rerun runner with each new commit(eco friendly ♻️).
Motivation
Formatting is annoying, running
errorprone
as part ofpre-push
can help us reduce new issues introduced.Describe the solution
We can use either a tool like
precommit
or simply add our hooks in.git/hooks/<hook>
. How?Additional context
No response
The text was updated successfully, but these errors were encountered: