Fix the checkpatch.pl workflow
authorBernd Schubert <bernd@bsbernd.com>
Thu, 2 Jan 2025 20:38:30 +0000 (21:38 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000 (16:56 +0100)
- The MAINTAINERS test is not valid for libfuse.
- Correct the base commit

Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
.github/workflows/checkpatch.yml

index 9a3cd1b7f62058fa6a5c1874a2010ac0414ee256..3f0eb9f0776e921269da688c771ec3dccef90e99 100644 (file)
@@ -18,5 +18,14 @@ jobs:
     - name: Run checkpatch.pl
       run: |
         git fetch origin ${{ github.base_ref }}
-        base_commit=$(git merge-base FETCH_HEAD ${{ github.event.pull_request.head.sha }})
-        ./checkpatch.pl --no-tree -g $base_commit
+        base_commit=$(git merge-base origin/${{ github.base_ref }} HEAD)
+        echo "Base commit: $base_commit"
+        echo "Running checkpatch.pl on all commits in the PR:"
+        git rev-list --reverse $base_commit..HEAD | while read commit; do
+          subject=$(git log -1 --format=%s $commit)
+          echo "Checking commit: $commit - $subject"
+          if ! ./checkpatch.pl --no-tree --ignore MAINTAINERS,SPDX_LICENSE_TAG,COMMIT_MESSAGE,FILE_PATH_CHANGES,EMAIL_SUBJECT -g $commit; then
+            echo "checkpatch.pl found issues in commit $commit - $subject"
+            exit 1
+          fi
+        done