Kick the release action manually, then release.
The sign-off is a simple line at the end of the explanation for the patch, which certifies that you wrote it or otherwise have the right to pass it on as an open-source patch.
The DCO requires a sign-off message in the following format appear on each commit in the pull request:
Signed-off-by: Sample Developer sample@example.comThe text can either be manually added to your commit body, or you can add either -s or --signoff to your usual git commit commands.
The following method is examples only and are not mandatory.
touch .git/hooks/prepare-commit-msg
chmod +x .git/hooks/prepare-commit-msgEdit the prepare-commit-msg file like:
#!/bin/sh
name=$(git config user.name)
email=$(git config user.email)if [ -z"${name}" ];thenecho"empty git config user.name"exit 1
fiif [ -z"${email}" ];thenecho"empty git config user.email"exit 1
fi
git interpret-trailers --if-exists doNothing --trailer \
"Signed-off-by: ${name} <${email}>" \
--in-place "$1"