On 2025-05-27 10:13:49 -0700 (-0700), Ildiko Vancsa wrote:
I'm reaching out to flag a recent message on the Foundation mailing list about the possibility to move OpenInfra projects from using the Contributor License Agreement (CLA) to the Developer Certificate of Origin (DCO) [...]
As discussed, tomorrow (2025-07-01) I'll merge https://review.opendev.org/953819 which will switch enforcement to start requiring Signed-off-by in commit messages when pushing new changes or revisions to changes (existing changes don't need to be amended in order to merge, only when revising, rebasing or backporting to other branches). Agreeing to the OpenInfra ICLA will no longer be necessary. After this update merges, when attempting to push or alter a change's content you may receive an error (from git review/git push at the command line or from the Gerrit WebUI if you're trying to edit a change there) notifying you that you're missing a Signed-off-by trailer in your commit message. You can either add one with git's -s option like... git commit -s (to add when making a new commit) git commit --amend -s (when altering an existing commit) ...or by directly editing the commit message to include a line at the end with your address such as... Signed-off-by: Jeremy Stanley <fungi@yuggoth.org> Keep in mind that if you're pushing a series of changes, you may need to update all their commit messages, e.g. through an interactive rebase. If anyone has questions, please don't hesitate to ask! -- Jeremy Stanley