2a0ec321c3
Every commit must now carry a Signed-off-by trailer matching its author, certifying the right to submit the change under the project's MIT license (DCO 1.1, the Linux kernel mechanism). Enforcement is strict at three layers: a commit-msg hook rejects unsigned commits locally (scripts/install-git-hooks.sh), and the new DCO workflow rejects every push and pull request containing one. Merge commits and bot authors are exempt, matching standard DCO checks. Signed-off-by: Martin Vogel <martin.vogel@datadice.io>
440 B
440 B
What does this PR do?
Checklist
- Every commit is signed off (
git commit -s) — required, CI rejects unsigned commits (DCO, see CONTRIBUTING.md) - Tests pass locally (
make -f Makefile.cbm test) - Lint passes (
make -f Makefile.cbm lint-ci) - New behavior is covered by a test (reproduce-first for bug fixes)