mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
a35b7d537a
The "manual" stage in pre-commit refers to a specific hook stage designed for hooks that are not intended to run automatically during a standard git commit operation. Instead, these hooks are meant to be triggered explicitly by a user, typically when performing a full repository scan or a specific check. This speeds up the standard `pre-commit run --all-files` run by not running these two hooks. Both hooks are time consuming Can run the manual hooks with: `pre-commit run --all-files --hook-stage manual` Add pre-commit manual stage run on CI to keep full coverage