Option to skip pre-commit hooks #352
Answered
by
stefanzweifel
ryanwilsonperkin
asked this question in
Help
-
It would be useful to have an option to run this action in a way that uses git's |
Beta Was this translation helpful? Give feedback.
Answered by
stefanzweifel
Nov 13, 2024
Replies: 1 comment 1 reply
-
There's a - uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_options: '--no-verify' I think that should solve the problem with the pre-commit hooks. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
stefanzweifel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a
commit_options
-input available.If you want to pass
--no-verify
togit-commit
, you can update you workflow like this:I think that should solve the problem with the pre-commit hooks.