Skip to content

Commit

Permalink
Fix reversed base and head
Browse files Browse the repository at this point in the history
Signed-off-by: Anna Rift <[email protected]>
  • Loading branch information
arifthpe committed Dec 6, 2024
1 parent bd9e9a6 commit 2add15d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ jobs:
fetch-depth: 0
- name: check commits for large files
run: |
baseSHA=${{github.event.pull_request.head.sha}}
headSHA=${{github.event.pull_request.base.sha}}
baseSHA=${{github.event.pull_request.base.sha}}
headSHA=${{github.event.pull_request.head.sha}}
# Loop backward through commits added in the PR, starting from the
# latest.
for commit in $(git rev-list $baseSHA..$headSHA)
Expand Down

0 comments on commit 2add15d

Please sign in to comment.