Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion libs/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@ ${lines.join('\n')}
What should I do to fix it ?

All proposed commits should include a Signed-off-by: <your-name> <your-email-address> line in their commit message.
This is most conveniently done by using --signoff (-s) when running git commit.`
This is most conveniently done by using --signoff (-s) when running git commit.
Please follow the steps to resolve the issue:
$ git config --global user.name 'your_name'
$ git config --global user.email 'you_email'
That is it. Git will add the correct paragraph at the end of your commit message.
COMMAND: $ git commit -s -S -m 'your_commit_message'
'-s' = 'Signed-off-by'
'-S' = 'Verify commit using gpg key'
ALL COMMITS MUST BE SIGNED
'https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits\ `

},
}