-
Notifications
You must be signed in to change notification settings - Fork 139
Add git minimum length body count validator #3437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add git minimum length body count validator #3437
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
82f11b5 to
19188fc
Compare
|
let's set as non-voting now. |
19188fc to
bcf8fe3
Compare
The script is verifying if the minimum body length contains 10 characters. Also raise a warning if there is no: "Signed-Off-By". Signed-off-by: Daniel Pawlik <[email protected]>
bcf8fe3 to
6fb1009
Compare
|
PR needs to be merged to get results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One suggestion, otherwise lgtm
|
|
||
| if ! grep -qi '^Signed-off-by:' "$MSG_FILE"; then | ||
| echo -e "\n\n**WARNING: Missing 'Signed-off-by:' line in commit message.**\n" >&2 | ||
| echo "Add: Signed-off-by: Your Name <[email protected]>" >&2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[non-blocking] Maybe we also want to add a tip about including the -s flag when committing to automatically include the Signed-off-by?
The script is verifying if the minimum body length contains 10 characters. Also raise a warning if there is no: "Signed-Off-By".
OSPRH-21367