We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b56fde3 commit c0d2141Copy full SHA for c0d2141
.github/workflows/pr-check.yaml
@@ -401,8 +401,10 @@ jobs:
401
- name: Evaluate changes in files
402
id: pnpm_changed
403
run: |
404
- git fetch origin ${{ github.event.pull_request.base.ref }}
405
- git diff --name-only origin/${{ github.event.pull_request.base.ref }} HEAD > changes.txt
+ BASE_REF="${{ github.event.pull_request.base.ref || github.event.merge_group.base_ref || 'main' }}"
+ BASE_REF="${BASE_REF#refs/heads/}" # Strip 'refs/heads/' if present
406
+ git fetch origin ${BASE_REF}
407
+ git diff --name-only origin/${BASE_REF} HEAD > changes.txt
408
if grep -q -e 'pnpm-lock.yaml' -e 'pr-check.yaml' changes.txt; then
409
echo "PNPM_LOCK_CHANGED=true" >> $GITHUB_OUTPUT
410
else
0 commit comments