chore: add Apache-2.0 license and DCO check - #39
Merged
Conversation
The vtafarm repositories are going public under the Apache License 2.0. Until now they carried no license at all, which leaves them visible but all-rights-reserved, and nothing verified the Signed-off-by trailer that every commit already carries. - LICENSE: verbatim Apache License 2.0 text. - NOTICE: copyright and attribution to IC3 SOFTWARE. - CONTRIBUTING.md: contributions are licensed under Apache-2.0 per section 5 of the license (no CLA); every commit needs a Developer Certificate of Origin sign-off whose email matches the author. - .github/workflows/dco.yaml: a pull-request check that reads the PR's commits through the API, skips merge commits, and fails on a missing trailer or a sign-off email that matches neither author nor committer. A ruleset on main requires this check. - README.md: License section pointing at the three files. Signed-off-by: Geoff Turk <geoff@ic3.dev>
geoffturk
force-pushed
the
chore/apache-license-dco
branch
from
September 4, 2026 14:26
2b74670 to
82032ce
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.
Adds the licensing files for going public under the Apache License 2.0, and a DCO check.
LICENSE: verbatim Apache License 2.0 textNOTICE: copyright and attribution to IC3 SOFTWARECONTRIBUTING.md: inbound licensing (Apache-2.0 section 5, no CLA) and sign-off instructions.github/workflows/dco.yaml: fails a PR if any non-merge commit lacks aSigned-off-bytrailer whose email matches the commit author or committerREADME.md: License sectionA ruleset on
mainrequires the DCO check to pass before merging.