Suggest documentation for syntax highlighting issues on Windows #222
Workflow file for this run
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
name: commit-validation-pr | |
on: [pull_request] | |
permissions: | |
contents: read | |
jobs: | |
check-commit-msg-length: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check commit message length | |
run: | | |
git log ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} | ( | |
longlines=0 | |
while IFS='' read -r line; do | |
if [ "${#line}" -gt 78 ]; then | |
echo "Overlong line: ${line}" >&2 | |
longlines=$(( longlines + 1 )) | |
fi | |
done | |
[ "${longlines}" -eq 0 ] | |
) |