chore(governance): replace CLA with DCO, add NOTICE and third-party license policy - #4
Merged
Merged
Conversation
…icense policy External contributions no longer require signing a CLA. The Developer Certificate of Origin v1.1 (DCO.md) replaces CLA.md: contributors sign off commits with `git commit -s`, keep their copyright, and license their work inbound = outbound under Apache-2.0. A dco.yml workflow enforces the Signed-off-by trailer on every PR (merge commits exempt). Also adds the Apache-2.0 NOTICE file and an explicit inbound license policy in CONTRIBUTING.md (permissive-only for vendored code; no GPL/AGPL/SSPL/BSL). Matches the governance switch already merged in humanbound/humanbound and humanbound/humanbound-firewall. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: Demetris Gerogiannis <8920360+dgerog@users.noreply.github.com>
dgerog
force-pushed
the
chore/switch-cla-to-dco
branch
from
July 14, 2026 10:55
536fcff to
b665ed6
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.
Summary
Adopts the Developer Certificate of Origin v1.1 as the project's contribution mechanism — the same one used by the Linux kernel, CNCF projects, and GitLab. Contributors sign off commits with
git commit -s, keep the copyright to their work, and license it inbound = outbound under Apache-2.0, exactly like the rest of the codebase. No agreement to sign, no bot to interact with.Matches humanbound/humanbound#61 and humanbound/humanbound-firewall#16 — all Humanbound open-source repos keep identical contribution governance.
Changes
CLA.mdremoved →DCO.mdadded — verbatim DCO v1.1 text plus a practical how-to (sign-off flag, fixing a missed sign-off).github/workflows/dco.yml— CI check that every non-merge commit in a PR carries aSigned-off-bytrailer, with fix instructions in the failure messageCONTRIBUTING.md— DCO section replaces the CLA section; new third-party license policy (vendored code must be Apache-2.0/MIT/BSD/ISC; MPL/LGPL only unmodified with maintainer sign-off; GPL/AGPL/SSPL/BSL not accepted)NOTICEadded per Apache-2.0 §4(d)🤖 Generated with Claude Code