ci: enforce contributor sign-off (DCO/CLA) + checklist gates - #53
Merged
Merged
Conversation
- Add a `dco` CI job: on every PR, verify each non-merge commit in the PR carries a `Signed-off-by` line; fail with a fix hint if any is missing. Make it a required check in branch protection to block unsigned-off merges. - PR template: require signed AND signed-off commits (sign-off = DCO + CLA), and add a licensing gate β all data must be commercial-clean (no restricted/NonCommercial). Signed-off-by: Austin L. <86896075+rvnminers-A-and-N@users.noreply.github.com>
rvnminers-A-and-N
force-pushed
the
ci/enforce-signoff
branch
from
June 29, 2026 14:34
c486c12 to
78a6b29
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Makes the CLA/sign-off an actual check, not just an honor-system line β relevant now that more contributors are coming.
Changes
dcoCI job: on every PR, verifies each non-merge commitbase..headcarries aSigned-off-by:line; fails with a fix hint (git commit -s --amend/git rebase --signoff) if any is missing. Sign-off certifies the DCO + the project CLA.To fully enforce
Add "DCO β commit sign-off" to branch protection's required status checks (Settings β Branches β main), alongside the existing Python/.NET checks.