ci(news): checkout to HEAD commit instead of merge commit (#21679)

The default merge branch is unreliable when trying to determine number
of commits in a PR. Using the HEAD branch of the PR removes this
ambiguity.
This commit is contained in:
dundargoc 2023-01-07 16:51:52 +01:00 committed by GitHub
parent f601c4b1ca
commit d89290b453
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: news.txt needs to be updated - name: news.txt needs to be updated
run: | run: |
for commit in $(git rev-list HEAD~${{ github.event.pull_request.commits }}..HEAD); do for commit in $(git rev-list HEAD~${{ github.event.pull_request.commits }}..HEAD); do