Skip to content

Commit

Permalink
github: Add commit message linting workflow.
Browse files Browse the repository at this point in the history
Introduced a GitHub Actions workflow (`commit-messages.yml`) to lint
commit messages on `master`, version branches, and stable branches.

Added `check_commit_messages.py` script to validate commit messages
against recommended format (subject, empty line, body).

Signed-off-by: Nikolay Martyanov <nikolay@zededa.com>
  • Loading branch information
OhmSpectator committed Aug 27, 2024
1 parent cfe8513 commit 0eb892f
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/commit-messages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Copyright (c) 2024, Zededa, Inc.
# SPDX-License-Identifier: Apache-2.0
---
name: Lint Commit Messages

on: # yamllint disable-line rule:truthy
push:
branches:
- "master"
- "[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+-stable"
pull_request:
branches:
- "master"
- "[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+-stable"

jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
fetch-depth: 0

- name: Fetch the PR's head ref
run: |
git fetch origin ${{ github.event.pull_request.head.sha }}:${{ github.event.pull_request.head.ref }}
git checkout ${{ github.event.pull_request.head.ref }}
- name: Create virtual environment
run: |
cd tools/check-commit-messages
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
- name: Lint commit messages
run: |
cd tools/check-commit-messages
source .venv/bin/activate
python check_commit_messages.py ${{ github.event.pull_request.base.sha }}
1 change: 1 addition & 0 deletions tools/check-commit-messages/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
venv
78 changes: 78 additions & 0 deletions tools/check-commit-messages/check_commit_messages.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
"""
Copyright (c) 2024, Zededa Inc.
SPDX-License-Identifier: Apache-2.0
This script checks the commit messages in the current branch to ensure they follow the
recommended format. The recommended format is as follows:
* Commit message should have a subject and body
* An empty line should separate the subject and body
* Body should start with a capital letter
* The body should not be empty (it should contain more than just "Signed-off-by")
"""

import sys

import git

def check_commit_message(commit):
"""
Check if a commit message follows the recommended format.
"""
message_lines = commit.message.strip().splitlines()

if len(message_lines) < 2:
return False, f"Commit {commit.hexsha} has no body."

subject = message_lines[0].strip()
second_line = message_lines[1].strip()

if not subject:
return False, f"Commit {commit.hexsha} has no subject."

# Check if the second line is empty (indicating a blank line between subject and body)
if second_line:
return False, f"Commit {commit.hexsha} does not have an empty line after the subject."

# Remove the subject and empty line to get the body
body_lines = [line.strip() for line in message_lines[2:] if line.strip()]

# Remove lines that are just "Signed-off-by"
body_lines = [line for line in body_lines if not line.lower().startswith("signed-off-by")]

if not body_lines:
return False, f"Commit {commit.hexsha} has a body but only contains Signed-off-by."

# Check if the body starts with a capital letter
if not body_lines[0][0].isupper():
return False, f"Body of commit {commit.hexsha} does not start with a capital letter."

return True, None


def main():
"""
Main function to check the commit messages in the current branch.
"""
repo = git.Repo(search_parent_directories=True)

# Base hash should be provided as an argument
base_hash = sys.argv[1]

commits = list(repo.iter_commits(f'{base_hash}..HEAD'))

if not commits:
print(f"No commits between {base_hash} and HEAD.")
sys.exit(1)

print(f"Checking {len(commits)} commits between {base_hash} and HEAD...")

for commit in commits:
valid, error_message = check_commit_message(commit)
if not valid:
print(error_message)
sys.exit(1)

print("All commits are valid.")

if __name__ == "__main__":
main()
3 changes: 3 additions & 0 deletions tools/check-commit-messages/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
gitdb==4.0.11
GitPython==3.1.43
smmap==5.0.1

0 comments on commit 0eb892f

Please sign in to comment.