-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: Add commit message linting workflow.
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
1 parent
c152bcb
commit 3900c2d
Showing
4 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |