name: Spell checking
runs-on: ubuntu-20.04
steps:
- - uses: actions/checkout@v2.0.0
+ - name: checkout-merge
+ if: "contains(github.event_name, 'pull_request')"
+ uses: actions/checkout@v2.0.0
+ with:
+ ref: refs/pull/${{github.event.pull_request.number}}/merge
+ fetch-depth: 5
+ - name: checkout
+ if: "!contains(github.event_name, 'pull_request')"
+ uses: actions/checkout@v2.0.0
with:
- ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 5
- uses: check-spelling/check-spelling@0.0.17-alpha
with: