diff --git a/.github/workflows/semver-auto.yaml b/.github/workflows/semver-auto.yaml index e1c770189c..8391a07e0a 100644 --- a/.github/workflows/semver-auto.yaml +++ b/.github/workflows/semver-auto.yaml @@ -12,9 +12,9 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} token: ${{ secrets.GITHUB_TOKEN }} - - uses: peter-evans/rebase@56c359b35ff7ba8426d0fdb842958b35b1db8277 - with: - base: ${{ github.base_ref }} + - name: Rebase the PR against github.base_ref to ensure actual API compatibility + run: | + git rebase -i ${{ github.base_ref }} - name: Add semver:unknown label if: failure()