-
Notifications
You must be signed in to change notification settings - Fork 909
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 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,22 @@ | ||
name: Check Commit Messages | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
length: | ||
name: Check that length of commit messages are <72 characters | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Fetch branch data from origin | ||
run: git fetch origin | ||
- run: | | ||
COMMIT_MESSAGES=$(git log --format=%s origin/$GITHUB_BASE_REF..HEAD) | ||
for MESSAGE in $COMMIT_MESSAGES; do | ||
LENGTH=$(echo $MESSAGE | wc -c) | ||
if [ $LENGTH -gt 72 ]; then | ||
echo "Commit message \"$MESSAGE\" is too long ($LENGTH characters). Please keep commit messages under 72 characters." | ||
exit 1 | ||
fi | ||
done |