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
chore(hooks): add commit-msg hook to enforce Signed-off-by and GPG signature
This commit introduces a commit-msg hook that enforces two
requirements for all commits:
- The commit message must contain a `Signed-off-by:` line (added with
the `-s` flag).
- The commit must be cryptographically signed with GPG (using the `-S`
flag or global config).
The hook dynamically imports the public key used to sign the latest
commit, ensuring verification works for any user and key.
This change improves the integrity and traceability of our commit
history.
Signed-off-by: Gil Levkovich <[email protected]>
0 commit comments