Skip to content

Commit c0d2141

Browse files
authored
chore: handle merge_group event as well for pr-check GH action (podman-desktop#11659)
* chore: handle merge_group event as well for pr-check GH action Signed-off-by: Florent Benoit <[email protected]> Signed-off-by: Florent BENOIT <[email protected]> ---------
1 parent b56fde3 commit c0d2141

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/pr-check.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -401,8 +401,10 @@ jobs:
401401
- name: Evaluate changes in files
402402
id: pnpm_changed
403403
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
404+
BASE_REF="${{ github.event.pull_request.base.ref || github.event.merge_group.base_ref || 'main' }}"
405+
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
406408
if grep -q -e 'pnpm-lock.yaml' -e 'pr-check.yaml' changes.txt; then
407409
echo "PNPM_LOCK_CHANGED=true" >> $GITHUB_OUTPUT
408410
else

0 commit comments

Comments
 (0)